只需要为table指定table-layout: fixed属性即可
<style>
table{
border-collapse: collapse;
border-spacing: 0;
table-layout: fixed;
}
</style>
w3c上对table-layout: fixed属性的说明
automatic 默认。列宽度由单元格内容设定。 fixed 列宽由表格宽度和列宽度设定。 inherit 规定应该从父元素继承 table-layout 属性的值。发表时间
评论
没有
只需要为table指定table-layout: fixed属性即可
<style>
table{
border-collapse: collapse;
border-spacing: 0;
table-layout: fixed;
}
</style>
w3c上对table-layout: fixed属性的说明
automatic 默认。列宽度由单元格内容设定。 fixed 列宽由表格宽度和列宽度设定。 inherit 规定应该从父元素继承 table-layout 属性的值。
相关文章
评论
本文评论功能已关闭。