.nav_left {
width: 10px;
background: url(../images/nav_left.jpg) no-repeat;
height: 40px;
float: left;
}
在HTML5中这个位置的样式这样写不正确,如:
应该在浮动之前加上clear:left;
即:
.nav_left {
width: 10px;
background: url(../images/nav_left.jpg) no-repeat;
height: 40px;
clear:left;
float: left;
}