【发布时间】:2014-09-17 10:34:04
【问题描述】:
我有一个需要在其中添加省略号的标签,但我无法让它工作:
<label id="div2">This is some long text that will not fit in the box</label>
label#div2 {
white-space: nowrap;
width: 30px;
overflow: hidden;
text-overflow: ellipsis;
border: 1px solid #000000;
}
【问题讨论】:
-
需要
display: block或inline-block才能工作,因为默认情况下标签是内联元素,而省略号仅适用于块级元素。