LoginSignup
30
24

More than 5 years have passed since last update.

CSSで文字列を省略して末尾に「・・・」を付けて表示する方法

Posted at

文字列を省略して末尾に「・・・」を付けて表示する方法。

html
<div id='target'>あいうえおかきくけこさしすせそたちつてと</div>
css
#target{
    max-width:80px; /* 最大80px */
    white-space: nowrap; /* 改行を半角スペースに置き換える */
    overflow: hidden; /* はみだした部分を削除する */
    text-overflow: ellipsis; /* 末尾に「…」を付加する */
}

30
24
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
30
24