LoginSignup
1
2

More than 5 years have passed since last update.

【メモ】CSSで長文の途中で切って途中で'...'を表示する方法(1行、複数行)

Posted at

①1行の場合

p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

②複数行の場合(webkit)

p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

※複数行でIE,Firefox対応の書き方は下記記事参照。

(参考)
https://tech.recruit-mp.co.jp/front-end/tips-ellipsis/

1
2
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
1
2