0

我意识到这个问题已经被问过很多次了,但我想弄清楚这个问题我疯了。

我对 html 很陌生,想构建一个静态标题 (940px x 30px),其中包含我们的徽标、导航栏和一些社交网络图标。

我正在努力做的是使标题适合整个页面,它在左侧、顶部和右侧显示我的部分背景,这令人沮丧。

下面是我使用的代码。

HTML 代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<title>TWChome</title>
</head>
<body>
    <div id="header">
        <div id="headercontents">
        Hello
        </div>
    </div>
</body>
</html>

CSS 代码

@charset "utf-8";

/* CSS Document */

body {
    background-image:url(../images/bg.jpg);
}

div#header {
    display:block;
    width:auto;
    height:auto;
    background-image:url(../images/bar.jpg);
}

div#headercontents {
    width:50%;
}
4

2 回答 2

2

尝试这个:

body{margin:0;padding:0}
于 2012-08-08T21:47:42.700 回答
0

实际上并不难:

#header {
 width: 940px;
 height: 30px;
 margin: 0 auto;
}

首先,您设置您希望它具有的尺寸,然后将其居中。仅此而已。另外我不知道你为什么将#header-contents 设置为50%的宽度......

更新带有背景图像的标题:

 #header {
   height: 30px;
   background: url(../images/bar.jpg) no-repeat center center; /* for a single image with height of approx 30px */
   background: url(../images/bar.jpg) repeat; /* alternative for a tile you want to repeat */
 }
 #headercontents {
  width: 940px;
  margin: 0 auto;
 }

并且确实总是按照其他人的说明应用一些重置 css。

于 2012-08-08T22:28:17.563 回答