创建这样的HTML布局需要什么CSS:
+--[li]---------------------------------------------+ |+--[div]-------------------------------------++---+| || A label with some text, truncate if necess…||BOX|| |+--------------------------------------------++---+| |+--[div]------------------------------------------+| || Another label, truncate if necessary || |+-------------------------------------------------+| +---------------------------------------------------+
<li>
是固定宽度,左侧浮动列表中的其他列表项<div>
上方,它只包含两个字母<div>
中没有文字应该换行,溢出应该隐藏目前我有:
<li style="float: left; width: 175px; white-space: nowrap; overflow: hidden;">
<div style="float: right;">XX</div>
<div>A label with some text, truncate if necessary</div>
<div>Another label, truncate if necessary</div>
</li>
但我不能让BOX悬停在第一个标签上。
答案 0 :(得分:1)
这是预期的结果吗?
alt text http://img51.imageshack.us/img51/6603/boxf.jpg
<li style="float: left; width: 175px; white-space: nowrap; overflow: hidden;">
<div style="float: right; position: relative; background-color: red;">BOX</div>
<div>A label with some text, truncate if necessary</div>
<div>Another label, truncate if necessary</div>
</li>
省略position: relative
,你会得到:
答案 1 :(得分:1)
这是因为右浮动的div不能在不可绕过的文本中浮动。
试试这个
<li style="float: left; width: 175px; white-space: nowrap; overflow: hidden; position: relative;">
<div style="position: absolute; right: 0px; background-color: #FFFFFF;">XX</div>
<div>A label with some text, truncate if necessary</div>
<div>Another label, truncate if necessary</div>
</li>
如果这是你想要的。
答案 2 :(得分:0)
您是否尝试float: left
第一个标签?