css脑白金

232 阅读1分钟

一些无论使用多少次,永远记不住的属性

1.超链接去下划线

text-decoration: none

2.单行超出文本省略

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

3.多行超出文本省略

display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;