热搜:NVER node 开发 php

css实现table表格中td超出文字省略掉_html/css_WEB-ITnose

2024-11-11 10:30:01
css实现table表格中td超出文字省略掉_html/css_WEB-ITnose

首先设置表格的样式table-layout:fixed

再设置表格的宽度(这步必须) 

最后再设置td样式的三个必要属性

text-overflow: ellipsis; white-space: nowrap; overflow: hidden;