CSS - div中的文字不换行,超出宽度就用省略号表示

问题

过多的文字会把盒子撑开,造成布局错乱。

解决

    .card-title {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

效果

posted @ 2019-03-13 13:28  Rocin  阅读(1890)  评论(0编辑  收藏  举报