CSS

文字相关css

2022-05-15  本文已影响0人  埼玉的头发

单行文本隐藏

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

多行文本隐藏

p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

文字在容器内均匀分布

div {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
}

文字换行

div {
  white-space:normal;
  word-break:break-all;
  word-wrap:break-word;
}
上一篇 下一篇

猜你喜欢

热点阅读