数字字母文本超出长度显示...

    <style>
        .line-limit-length {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width:50px;
        }
    </style>
<div class="item">
    <p class="line-limit-length">dfergdger</p>
</div>

猜你喜欢

转载自blog.csdn.net/cheeso/article/details/78392003