問題是,我需要強制所有的div在一行。具有表格單元格行爲。 並支持IE7。CSS:顯示:表格單元格IE7 +或強制浮動div在一行
鏈接擺弄http://jsfiddle.net/Beck/BH5WG/ 和下面的代碼OFC副本:
HTML:
<div class="wr">
<div class="con">
<div class="item">some text1</div>
<div class="item">some text1 some text1</div>
<div class="item">some text1</div>
<div class="item">some text1 some text1</div>
</div>
</div>
<div class="wr" id="wr2">
<div class="con">
<table cellspacing="0" cellpadding="0">
<tr>
<td>
<div class="item">some text1</div>
</td>
<td>
<div class="item">some text1 some text1</div>
</td>
<td>
<div class="item">some text1</div>
</td>
<td>
<div class="item">some text1 some text1</div>
</td>
</tr>
</table>
</div>
</div>
的CSS:
.wr {
width:300px;
border:1px solid red;
}
.con {
height:24px;
}
.item {
float:left;
white-space:nowrap;
}
#wr2 {
margin:50px 0px 0px 0px;
}
一個解決將是這樣的:http://jsfiddle.net/Beck/BH5WG/2/但它是非常大的性能問題: ( – Somebody