Bootstrap

css如何实现文字两行后,自动省略号显示?

 1. 多行超出显示省略号(只适用于WebKit内核的浏览器,因此firebox、ie等并不支持该属性)

文字容器class {
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2; // 2行
}

2. 通用浏览器做法:比较靠谱简单的做法就是设置相对定位的容器高度,用包含省略号(…)的元素模拟实现:

// 文字容器样式设置:
文字容器class {
   position:relative;
   line-height:1.4em;
   height:4.2em; //height是line-height的整数倍,防止文字显示不全
   overflow:hidden;
}

文字容器class::after {
   background: linear-gradient(to right, rgba(255, 255, 255, 0), #FFFFFF 50%) repeat scroll 0 0 rgba(0, 0, 0, 0);
    bottom: 0;
    content: "...";
    padding: 0 5px 1px 30px;
    position: absolute;
    right: 0;
}

 

;