这是我的 CSS 片段
.test{
width:150px;
height:60px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}
它的作用是..
the quick brown fo...
我想要的是
the quick brown fox
jumps over the lazy
dog. the quick br...
无论如何只用CSS来做到这一点?还是我需要为此使用javascript。如果需要javascript,任何人都可以教我怎么做?谢谢!
更新
我尝试删除white-space: nowrap;
并添加overflow-y: hidden;
它给了我 3 行布局但没有省略号
.test{
width:150px;
height:60px;
overflow-y: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}