【发布时间】:2015-11-04 21:51:49
【问题描述】:
我为我的网站制作了一个固定的标题 div,并在其下添加了一个阴影,但它不适合我的浏览器(100% 宽度)??
这是我的 CSS:
body{
margin: 0;
padding: 0;
background-color: #F7F7F7;
}
#head{
width: 100%;
height: 60px;
background-color: #5B86E1;
box-shadow: 0 10px 17px -5px #000000;
position: fixed;
}
#content{
width: 900px;
padding-top: 60px;
min-height: 100px;
background-color: #FFFFFF;
margin-right: auto;
margin-left: auto;
}
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="head">
</div>
<div id="content">
</div>
</body>
</html>
这是一个屏幕截图:
【问题讨论】: