type
Post
status
Published
date
Apr 23, 2015
slug
summary
tags
前端
category
技术分享
icon
password
js
一般要只显示一行的话用overflow:hidden;text-overflow:ellipsis;white-space:nowrap;就行了
例:
这是一条很长很长很长很长很长很长很长很长很长很长很长的内容
但假如要显示2行以上呢,要这样:
text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;
 
Loading...