learningProcess icon indicating copy to clipboard operation
learningProcess copied to clipboard

我的学习日志(十)

Open shimuash opened this issue 8 years ago • 0 comments

文字超出时显示省略号

一行文字省略号

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

两行文字省略号

width: 100%;
height: 2.3rem;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;

shimuash avatar Jul 02 '17 01:07 shimuash