首先,必须一点是 table一定要固定width,一定要有style:
table-layout:fixed;
其次,td的样式: white-space:nowrap;
overflow:hidden; (溢出部分隐藏)
如果溢出部分需要显示... 可以用text-overflow:ellipsis
BTW,css优先控制示例:
div.test li a {
font-size:14px !important;
font-weight:normal !important;
}
时间: 2024-10-23 16:36:01