首页htmltextPage Widget - 如何在背景图象顶部的中心文本在HTML

Page Widget - 如何在背景图象顶部的中心文本在HTML

我们想知道如何在背景图象顶部的中心文本在HTML。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.banner {
  position: absolute;
  top: 10px;
  left: 30px;
  width: 1200px;
  height: 250px;
  background: url(http://www.w3cschool.cn/style/download.png);
}
</style>
</head>
<body>
  <DIV class="banner">
    <div style="width: 800px; margin: 0 auto;">
      Celosia - the gothic memory
          card game is a game for everyone, new to this genre or veterans,
          you will truly enjoy the dark atmosphere and awesome music. Help a
          goddess, travel around the world and unveil a big mystery or test
          your skills in the Time attack or Boss modes in over 50 levels.
          Celosia is currently in Alpha stage so everything you see is
          subject to changes. You can also follow the official Facebook or
          Twitter page for updates and news.
    </div>
  </DIV>
</body>
</html>