行以 100% 排列,但在缩放时关闭(IE 是唯一能做到这一点的……看图)
问题再现@ http://jsfiddle.net/rAQnE/
<div class="col1">one</div><div class="col2">two</div><div class="col2">three</div>
<div class="BoxUnder">under</div>
css
.col1, .col2{
display: inline-block;
border: 1px solid #a2a2a2;
background: #ebebeb;
}
.col1 {
width: 44px;
}
.col2{
width: 60px;
}
.BoxUnder {
width: 168px;
border: 1px solid #a2a2a2;
background: #e5e5e5;
}
我花了太多时间在这上,因为它只是 +/-1 像素。有人对此有解决方案吗?