CSS實(shí)現(xiàn)單行和多行文本溢出顯示省略號(hào)……
1.CSS實(shí)現(xiàn)單行和多行文本溢出顯示省略號(hào)……
.ellipsis{ //單行文本溢出
overflow: hidden;
text-overflow:ellipsis; //文本溢出顯示省略號(hào)
white-space:nowrap; //文本不會(huì)換行(單行文本溢出)
width:130px;
background-color: red;
}
2.多行文本溢出顯示省略號(hào)…
.mult_line_ellipsis{ //多行文本溢出
overflow: hidden;
text-overflow:ellipsis; //文本溢出顯示省略號(hào)
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
width:130px;
background-color:cornflowerblue;
}
3.跨瀏覽器兼容的方法
瀏覽器兼容偽類寫(xiě)法css溢出部分css溢出部分css溢出部分css溢出部分css溢出部分css溢出部分css溢出部分
.imitate_ellipsis{
position:relative;
line-height:1.4em;
height:2.8em;
overflow:hidden;
width:130px;
background-color: orange;
}
.imitate_ellipsis::after{
content:"...";
font-weight:bold;
position:absolute;
bottom:0;
right:0;
padding-left:20px;
background: -webkit-linear-gradient(left, transparent, #fff 62%);
background: -o-linear-gradient(right, transparent, #fff 62%);
background: -moz-linear-gradient(right, transparent, #fff 62%);
background: linear-gradient(to right, transparent, #fff 62%);
}