overflow : hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-l">
当前位置:Gxlcms > html代码 > css多行省略号兼容性写法

css多行省略号兼容性写法

时间:2021-07-01 10:21:17 帮助过:86人阅读

最近在写页面,需要写多行省略好。
在webkit浏览器下,可以这么写
  • padding

  • left-2">

  • overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
但是要实现兼容的话,可以用模拟的方式来实现
  • <p>WebKit Browsers will clamp the number of lines in this paragraph to 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
    <style>
        p {
        position:relative;
        line-height:1.4em;
        /* 3 times the line-height to show 3 lines */
        height:4.2em;
        overflow:hidden;
    }
    p::after {
        content:"...";
        font-weight:bold;
        position:absolute;
        bottom:0;
        right:0;
        padding:0 20px 1px 45px;
        background:url(http://css88.b0.upaiyun.com/css88/2014/09/ellipsis_bg.png) repeat-y;
    }
    </style>

还有一种实现方法是用插件,如 Clamp.js

以上就是css多行省略号兼容性写法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行