1

I want to divide my page into 3 sections, with 3 different backgrounds:
top_bg, middle_bg and bottom_bg.

The problem is that the background has a padding. I want it to show from the start of the page and next 500 pixels in height.

Here is my HTML:

<!DOCTYPE HTML>
<html lang="en-US">
<head>
  <meta charset="UTF-8">
  <title></title>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
  <header>
    <div class="top_part">
      <img src="images/logo.png" alt="logo" />
      <h1>My website name</h1>
    </div>
  </header>
</body>
</html>

And here my CSS:

header {
    background-image: url(images/top_bg.gif) ;
    height: 500px;
}

.top_part img {
    float: left;
    width: 80px;
    height: 80;
}

.top_part h1 {
    position: relative;
    top: 18px;
    left: 10px;
}

Look what I meant, if you didn't understood: Image

4

1 に答える 1

4

ブラウザのデフォルトのスタイルは HTML 要素につながるためmarginpaddingそれらをリセットする必要があります..

使用する

* { /* This resets all elements default margins and paddings */
margin: 0px;
padding: 0px;
}

それ以外の場合は、CSSリセットスタイルシートを使用して、デフォルト marginspadding

于 2012-07-28T13:45:16.110 に答える