我有label
这可能是任何宽度,应该使用CSS text-overflow:ellipsis
属性。我似乎无法让它工作。 #a
有效,因为设置了width
,这是预期的结果。如何让#b
工作?
<div id="a">
<a href="#">link</a>
<input type="checkbox" />
<label>checkbox label</label>
</div>
<div id="b">
<a href="#">link</a>
<input type="checkbox" />
<label>checkbox label</label>
</div>
#a {width:100px; background:#ddd;}
#a label {text-overflow:ellipsis; overflow:hidden; white-space:nowrap; float:right; width:50px;}
#a a {float:right}
#b {width:100px; background:#ddd;}
#b label {text-overflow:ellipsis; overflow:hidden; white-space:nowrap; float:right;}
#b a {float:right}