モバイル用のこのマークアップがあります。
<table>
<tr>
<td style="width:60%">
<div class="ellipsis">
Test bla bla
</div>
</td>
<td style="width:40%">
</td>
</tr>
CSS
.ellipsis {
width : 100%;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
word-break: break-all;
word-wrap: break-word;
}
切り捨ては期待どおりに機能せず、代わりにコンテンツに応じて列が拡張されます。
Table-Layout : fixed は両方の列を等しくします。
助言がありますか ?ありがとう。