newPromise / js-

0 stars 0 forks source link

css 实现省略号 #12

Open newPromise opened 6 years ago

newPromise commented 6 years ago

CSS 如何实现 省略号

div {
  width: 200px;
  text-overflow: ellipse;
  white-space: nowrap;
  overflow: hidden
}

text-overflow: 设定超出的部分以省略号显示 white-space: nowrap : 设置内容不换行 overflow: hidden 对于超出的部分,进行隐藏