table表格的样式问题
来源:11-2 后台管理系统功能演示
营赢盈英
2017-09-12
我按照如下的方式设置表格的样式,但是每列的宽度都一样,不能再设置了,怎么破?
table{
table-layout: fixed;
width: 100%
}
th{
width : 100%;
white-space : nowrap;
overflow : hidden;
text-overflow : ellipsis
}
td{
white-space : nowrap;
overflow : hidden;
text-overflow : ellipsis
}
写回答
1回答
-
Rosen
2017-09-12
如果想撑开某一列,用css给td设置px的宽度
042017-09-13
相似问题