我正在尝试将 3 个 div 放在一边,两侧 div 需要平均填充页面的其余部分:
<div class="second_bar">
<div class="status_border_left">
</div><div class="nav_bar">
</div><div class="status_border_right">
</div>
</div>
我的 CSS:
.status_border_left{
//width:100px;
height:14px;
background-color:yellow;
}
.status_border_right{
//width:100px;
height:14px;
background-color:yellow;
}
.nav_bar{
position:relative;
margin: 0 auto;
height:80px;
width:980px;
background-color:green;
}
.second_bar *{
display:inline-block;
vertical-align:top;
}
.second_bar{
height:80px;
width:100%;
}
有什么方法可以在不涉及 JavaScript 的情况下做我想做的事?