これは私の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;
}