【发布时间】:2013-07-20 16:46:42
【问题描述】:
我不知道为什么这个简单的 CSS 不起作用...
.app a {
height: 18px;
width: 140px;
padding: 0;
overflow: hidden;
position: relative;
margin: 0 5px 0 5px;
text-align: center;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
color: #000;
}
<div class="app">
<a href="">Test Test Test Test Test Test</a>
</div>
应该在第四次“测试”前后中断
【问题讨论】:
-
FF only- 如果应用了filter,将不会呈现省略号。 bug opened -
在我的情况下,从元素中删除 display: flex 有帮助
-
我需要添加
display: flex;。