我有以下的基本結構:CSS空白級聯不正確?
<table>
<tr>
<td>
<div id="root">
<div>Lots of text here</div>
<div>Lots more test here</div>
</div>
</td>
<td>I should always be visible</td>
</tr>
</table>
而這個CSS:
#root {
white-space: nowrap;
overflow: hidden;
}
#root>div {
white-space: normal;
display: inline-block;
width: 100%;
}
的想法是,每個孩子<div>
S的「頁」,可以通過水平滾動顯示。儘管normal
會影響他們(並且根據檢查員的說法,他們正在影響他們),儘管這些元素確實並排出現,但其中的文字似乎仍受nowrap
的影響。我已經在IE9(white-space
工作正常),和Chrome 23(white-space
仍然nowrap
)測試。
有沒有解決方法,或者是Chrome中的(嚴重)錯誤?
它看起來是一樣的,以我在IE9(瀏覽器模式:IE9,文檔模式IE9)和鉻23 http://jsfiddle.net/mowglisanu/RgbY4/ – Musa