如何用CSS控制表格每列的宽度,超出的字不换行,用...显示

<style type="text/css">
    

  table {
    table-layout: fixed;
    }
    
    td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    }
    
</style>

样式图:

猜你喜欢

转载自blog.csdn.net/DreamITEffort/article/details/83502585