您的位置:首页 > 其它

多行文本处理溢出省略的方法

2017-10-10 09:16 267 查看
<div class="example">单行文本溢出的处理方法,单行文本溢出的处理方法</div>
<div class="example-one">多行文本溢出的处理方法,多行文本溢出的处理方法多行文本溢出的处理方法,多行文本溢出的处理方法,多行文本溢出的处理方法,</div>


单行文本溢出的处理方法

<style>
.example{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
</style>


多行文本溢出的处理方法

<style>
.example-one{ display:-webkit-box !important; overflow:hidden;
text-overflow:ellipsis;
-webkit-box-orient:vertical; /*文本方向为横向*/
-webkit-line-clamp:3;   /*显示文本的行数*/}
</style>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: