🙄

[css] 幅を越えた文字列を三点リーダー(…)で省略

2021/09/20に公開
.item-title {
  font-size: 16px;
  color: #333333;
  height: 25px;
  width: 150px;
  overflow: hidden; //非表示seoに影響しない
  text-overflow: ellipsis; //...にする
  white-space: nowrap; //ホワイトスペースを詰める

https://rfs.jp/sb/html-css/html-css-lab/overflow_ellipsis.html

Discussion