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; }