CSS 文本超出指定宽度后隐藏并显示为省略号

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/chris_zqw/article/details/81289476

<style type="text/css">

 .tips{
            cursor:pointer;
            max-width: 88px;
            white-space:nowrap;
            text-overflow:ellipsis;
            overflow:hidden;
        }

</style>

猜你喜欢

转载自blog.csdn.net/chris_zqw/article/details/81289476