#container {
width: 1000px;
margin: 0 auto;
background-color: #000000;
}
#header {
width: 884px;
height: 113px;
position: relative;
margin: auto;
background-image: url(mybanner.png);
background-repeat: no-repeat;
border-bottom: 5px solid #333;
}
#leftnav{
float: left;
width: 140px;
height: 800px;
background-color: #F8AA3C;
border-right: 1px dashed #694717;
}
#body{
width: 550px;
height: 800px;
background-color: #333;
margin: auto;
padding: 10px 0px 0px 10px;
}
答案 0 :(得分:0)
缺少诸如你的DOM结构以及试图放到某个容器的元素的信息,我看到你使用了float:left
样式所以我猜它是一些块元素,在这种情况下我只能建议在position: relative
元素中添加leftnav
样式。