CSS文本超出隐藏
Posted hmy666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS文本超出隐藏相关的知识,希望对你有一定的参考价值。
一、单行文本
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
二、多行文本
.c_contM_word {
position: relative;
width: 80%;
max-height: 189px;
text-overflow: ellipsis;
background-color: cyan;
display: -webkit-box;
-webkit-line-clamp: 6;//超出6行隐藏
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
//或者使用伪元素
.c_contM_word {
position: relative;
width: 80%;
max-height: 189px;
text-overflow: ellipsis;
background-color: cyan;
overflow: hidden;
}
.c_contM_word::after {
content: "...."; // \'...\'
position: absolute;
bottom: 0;
right: 0;
padding-left: 40px;//设置伪元素的paddingleft为40px,已达到遮挡文字效果
background: -webkit-linear-gradient(left, transparent, #fff 55%);//设置padding-left线性渐变颜色~~~~
background: -o-linear-gradient(right, transparent, #fff 55%);
background: -moz-linear-gradient(right, transparent, #fff 55%);
background: linear-gradient(to right, transparent, #fff 55%);
}
以上是关于CSS文本超出隐藏的主要内容,如果未能解决你的问题,请参考以下文章