有时候,我们不确定一行有多少个td,也就是说,我们不能够确定每个td的宽度,此时我们可以用一个样式,让td自己平分
/*这里设置了后,td将会平分宽度*/
tabel{
table-layout:fixed ;
}
/*防止td溢出*/
td{
toverflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
">
有时候,我们不确定一行有多少个td,也就是说,我们不能够确定每个td的宽度,此时我们可以用一个样式,让td自己平分
/*这里设置了后,td将会平分宽度*/
tabel{
table-layout:fixed ;
}
/*防止td溢出*/
td{
toverflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}