我确定我忽略了一些简单的东西,但我试图将内容 div 放在页面的中心。背景图像是 16x9,我希望它保持原样,而中心内容 div 在标题 div 下方上下滑动。
这是我的html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<link href="test.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="bod">
<div id="head">
toolbar
</div>
<div id="content">
Hello
</div>
</div>
</body>
</html>
这是我的CSS
@charset "UTF-8";
/* CSS Document */
body{
background-image:url(images/1920w.png);
background-size:100%;
position:fixed;
background-repeat:no-repeat;
background-color:#E9C9A0;
}
#bod{
width:100%;
}
#head{
position:fixed;
margin-right:auto;
margin-left:auto;
width:62.5%;
}
#content{
width:62.5%;
height:100%;
margin-right:auto;
margin-left:auto;
}