美文网首页
字符串最多2行, 溢出文字省略号代替

字符串最多2行, 溢出文字省略号代替

作者: Oo晨晨oO | 来源:发表于2018-01-23 16:06 被阅读10次

html中:

<div class="two-line-string">
    <span>这里写文字</span>
</div>

css中:

.two-line-string {
        width: 240px;
        height: 48px;
        padding-right: 20px;
        line-height: 24px;
        // ------核心代码------
        display: flex;
        flex-direction: row;
        overflow : hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-align: left;
        justify-content: center;
        // ------核心代码------
      }

相关文章

网友评论

      本文标题:字符串最多2行, 溢出文字省略号代替

      本文链接:https://www.haomeiwen.com/subject/nyisaxtx.html