我試圖創建一個容器項目將包括兩個類型的元素:項目和文本。 邏輯應該是這樣的:顯示:內聯和浮動:左
背景總是用內聯顯示樣式着色(帶有背景而不是塊的換行符);一個名單上
Seperete項目。
請看看我的小提琴: http://jsfiddle.net/BZw4A/
這裏是用來層次:
<div id="container">
<div class="text bg">This is only a sample text to show the weird problem about inline text and background.</div>
<div class="item bg">Item One</div>
<div class="item bg">Item Two</div>
<div class="item bg">Item Three</div>
<div class="item bg">Item Four</div>
<div class="item bg">Item Five</div>
</div>
你可以從小提琴看;由於容器的寬度值,文本元素的背景看起來像塊而不是內聯。我能找到的唯一辦法是刪除這些行:
float: left;
clear: both;
當我刪除這些行,文本背景可追溯到我要怎麼然而它是;按鈕失去它們的順序(因爲內嵌的),並顯示在同一條線上,就像普通的文本..
我很樂意聽到這個問題,這主要是基於這些排版問題的一些解決方案。