我究竟做错了什么?我添加了一个左侧导航,但不是留在网站内,而是留在它下面

时间:2013-05-10 22:11:57

标签: css

#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;
}

1 个答案:

答案 0 :(得分:0)

缺少诸如你的DOM结构以及试图放到某个容器的元素的信息,我看到你使用了float:left样式所以我猜它是一些块元素,在这种情况下我只能建议在position: relative元素中添加leftnav样式。