CSS文字溢出省略

63 阅读1分钟

文字溢出省略/单行文本省略

.container {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

多行文本省略

.container {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

换行后省略

.container {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-box-pack: justify;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.5;
  height: 4.5em;
  width: 300px;
  overflow: hidden;
}