文本超出元素部分变成省略号

    /*文字超出部分使用省略号显示*/
    #omit{
        max-width: 76.55px;
        height: 27.66px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap !important;
        outline: 0 !important;
    }

max-width 元素最大宽度超出最大宽度就会变成省略号

text-overflow 文本超出 elipsis 超出部分变成省略号

overflow 预防万一超出和模型

猜你喜欢

转载自blog.csdn.net/weixin_42139535/article/details/85762277