嗨,我的网站的边距自动存在问题,我有一个宽度设置为 1000 像素的包装器 div,顶部和底部边距为 0,左右边距为自动。我在侧边栏中有一个导航菜单,我在其中使用 java 脚本将相同的 div 替换为不同的表。当我单击菜单中的链接时,包装器会向右移动一些 px 并返回原始位置,我不希望该操作是静态的,并且不会随时变化。我怎样才能做到这一点。
当我将边距设置为 0 时,定位出现问题。但我希望包装器居中。
这是演示:
http://techiedreams.com/projects/test/new/admin/index.php
这是我的CSS代码:
body {
background-color:#E2E3E4;
color:#333;
font-size: 12px;
}
#wrapper {
background-color:#ffffff;
width:1000px;
margin:0 auto;
margin-bottom:10px;
}
#content {
width:780px;
float:right;
}
#sidebar {
width:150px;
margin-top:15px;
margin-left:10px;
float:left;
border-right:1px solid #EDE9DE;
margin-bottom:25px;
}
#footer {
clear:both;
margin:0 auto;
width:1000px;
height:44px;
border-top:1px solid #EDE9DE;
}
请检查 HTML 的演示