赞
踩
日常开发中,经常会遇到需要展示的文本过长,这种情况下,为了提高用户的使用体验,最常见的处理方式就是把溢出的文本显示成省略号。
处理文本的溢出的方式:1)单行文本溢出; 2)多行文本溢出; 3)超出容器高度缩略展示;4)缩略后加展开收起按钮可点击操作。
overflow
:文字长度超出限定宽度,则隐藏超出的内容
text-overflow
:规定当文本溢出时,显示省略符号来代表被修剪的文本
overflow:hidden
和white-space:nowrap
后text-overflow才能够生效的white-space
:控制空白字符的显示,同时还能控制是否自动换行。
word-break
: break-all 使一个单词能够在换行时进行拆分。
<div class="wrap"> <p>单行文本溢出缩略显示</p> <div class="one-line"> 人们总是把幸福解读为“有”,有房,有车,有钱,有权,但幸福其实是“无”,无忧,无虑,无病,无灾,“有”多半是给别人看的,“无”才是你自的。 </div> </div> <style> .wrap { width: 350px; margin: 0 auto; text-align: left; } p { color: #1989fa; } .one-line { text-overflow: ellipsis; overflow: hidden; word-break: break-all; white-space: nowrap; border: 1px solid #eef0f5; } </style>
<div class="wrap"> <p>两行省略——基于行数截断</p> <div class="two-line"> 土地是世界上唯一值得你去为之工作,为之战斗,为之牺牲的东西。 Land is the only thing in the world worth working for, worth fighting for, worth dying for. </div> </div> <style> .two-line { overflow: hidden; display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */ -webkit-line-clamp: 2; /* 行数,值可以改,表示展示X行后多余的缩略展示 */ -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */ word-break: break-all; border: 1px solid #eef0f5; } </style>
简单来说,超过元素宽高度后缩略展示,关键在于需要设置元素宽度与高度,然后再根据高度看下最多能放几行,设置-webkit-line-clamp的值为最大行数。
<div class="wrap"> <p>超过元素宽高省略显示</p> <div class="limit-height"> 现在我发现自己活在一个比死还要痛苦的世界,一个无我容身之处的世界。 Now I find myself in a world which for me is worse than death. A world in which there is no place for me. </div> </div> <style> .limit-height { width: 350px; height: 65px; word-break: break-all; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; border: 1px solid #eef0f5; } </style>
<div class="hide-or-expend"> <input id="expend" class="expend" type="checkbox" /> <div class="content"> <label class="btn" for="expend"></label> 有时起初的隐忍可以避免一路的疼痛。 Sometimes a little discomfort in the beginning can save a whole lot of pain down the road. 有人住高楼,有人在深沟,有人光万丈,有人一身锈,世人万千种,浮云莫去求,斯人若彩虹,遇上方知有。 Some of us get dipped in flat, some in satin, some in gloss. But every once in a while you find someone who's iridescent, and when you do, nothing will ever compare. </div> </div> <style> .hide-or-expend { display: flex; width: 350px; margin: 50px auto; overflow: hidden; text-align: left; border: 1px solid #eef0f5; } .content { position: relative; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } .content::before { content: ""; height: calc(100% - 23px); float: right; } .content::after { position: absolute; content: ""; width: 999vw; height: 999vw; } .btn { float: right; clear: both; color: #1989fa; cursor: pointer; } .btn::before { content: "展开"; } .expend { display: none; } .expend:checked + .content { -webkit-line-clamp: 999; } .expend:checked + .content::after { visibility: hidden; } .expend:checked + .content .btn::before { content: "收起"; } </style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。