私はテーブルセルを持っており、それを正確に2行にしたいと思います。テキストのオーバーフローが発生します。私はここでアンカータグのテキストを表のセルにクリップする方法はありますか?
<table>
<tr>
<td>
<a href="javascript:void(0);">
hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world</a>
</td>
</tr>
</table>
CSS
td {
height:2em;
text-overflow:clip;
background-color:cyan;
}
はフィドルがhttps://jsfiddle.net/u1cp1r0v/
である。しかし、それは私が望んで行いません。このコードをしようとしています。
何が間違っているのか分かりますか?
おかげ
[テーブルセルの内容の最大高さの設定](https://stackoverflow.com/questions/7045653/setting-max-height-for-table-cell-contents) – jmargolisvt