我想在链接上使用 text-overflow 属性。我为段落工作,但不为链接工作。
这是HTML代码
<div>
<ul>
<li>
<p>the text is too long</p>
</li>
<li>
<a href="javascript:alert('test')">the link is too long</a>
</li>
</ul>
</div>
这是CSS代码:
a {
white-space: nowrap;
width:50px;
overflow: hidden;
text-overflow: ellipsis;
}
p {
white-space: nowrap;
width:50px;
overflow: hidden;
text-overflow: ellipsis;
}
请参阅http://jsfiddle.net/corinnekm/LLVDB/上的示例
非常感谢你的帮助。