8
9

More than 5 years have passed since last update.

text-overflowについて(備忘録として)

Last updated at Posted at 2013-08-09

要素から文字がはみ出したとき「...」をつけて省略するにはtext-overflow:elipsise;を設定する。

sample.css
width:300px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;

そのとき幅を指定してoverflowをhiddenにする。text-overflowだけじゃうまくいかないことに注意。

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9