迷茫2017-04-17 11:50:01
//首先缩进
text-indent:2em;
//只显示4行
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
巴扎黑2017-04-17 11:50:01
p{
text-indent: 2rem;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}
只显示4行:小伙子你这就对CSS3要求过分了啊!