列表内容超过长度用省略号代替,鼠标放上去显示全部内容

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zq123lcx/article/details/87934078
//设置样式
<style>
        table { table-layout: fixed;}
        .table th{text-align: center}
        table td {
            overflow:hidden;
            white-space:nowrap;
            text-overflow:ellipsis;
        }

    </style>

 <td>里的title,鼠标放上去显示列表中所有内容

<td title="${obj.content}">${obj.content}</td>

猜你喜欢

转载自blog.csdn.net/zq123lcx/article/details/87934078