table单元格平均分配宽度

发表时间
评论 没有

只需要为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 属性的值。

作者
分类 网站建设

评论

本文评论功能已关闭。

← 较早的 较新的 →

相关文章