数据显示列表 Table中 td 某列字段缩短省略

来源:互联网 发布:按揭贷款月供怎么算法 编辑:程序博客网 时间:2024/06/05 02:02

数据显示列表 Table中 td 某列字段缩短省略

1.页面显示


用title 将鼠标移动在字段上显示全部

2.css样式

<style type="text/css">    .table-ellipsis {        table-layout: fixed;        width: 100%;    }    .table-ellipsis td {        overflow: hidden;        text-overflow: ellipsis;        white-space: nowrap;    }    .wrap{        width: 350px; /*设置需要固定的宽度*/    white-space: nowrap; /*不换行*/    text-overflow: ellipsis; /*超出部分用.... 代替*/    overflow: hidden; /*超出隐藏*/    }</style>


原创粉丝点击