Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让<a>标签使用该text-overflow: ellipsis属性?我有很长的链接名称,我想截断。
<a>
text-overflow: ellipsis
这是我使用通常的文本溢出方法的尝试。
http://jsfiddle.net/2Wg8N/
您需要将其更改为display: block;或其他类似的内容inline-block并指定宽度,例如:
display: block;
inline-block
a { width: 50px; display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }