我有一些divs
样式display: table-cell
,我希望在divs
上设置固定宽度,如果不合适则截断内部文字。
HTML
<div class="row">
<div class="cell" style="width:100px;">Should not fit in 100px</div>
</div>
CSS
.row {
display: table-row;
}
.cell {
display: table-cell;
border: solid 1px #DADADA;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
有可能吗?
答案 0 :(得分:10)