<!DOCTYPE html>
<html>
<head>
<style>
这是宽度为 50% 的导航的大小
#navigation {
position: fixed;
top: 110px;
width: 50%;
left:50%;
margin-left:-25%;
background: #FFF;
z-index: 10000;
height: 60px;
opacity:0.7;
padding:0;
border-bottom:1px solid #ccc;
}
#navigation ul {
list-style: none;
padding:30px 0 0 0;
margin:0;
}
#navigation ul li {
font-weight:bold;
color:#3d3d3d;
float:left;
padding:0 20px 0 0;
margin:0;
}
这是宽度也是 50% 的内容的大小
#content {
position: relative;
width: 50%;
height: 100%;
top:180px;
left:50%;
height:800px;
margin-left:-25%;
background-color: #3d3d3d;
padding:0;
}
</style>
</head>
<body>
<div id="navigation">
<ul>
<li><a href="#">BUtton 1</a></li>
<li><a href="#">BUtton 2</a></li>
<li><a href="#">BUtton 3</a></li>
<li><a href="#">BUtton 4</a></li>
</ul>
</div>
<div id="content"></div>
</body>
</html>
我将导航和内容的宽度设置为 50%,但是当我在浏览器中打开它时,这两个框的宽度不同,有人可以帮我吗?