我使用了标准CSS重置,然后将以下样式应用于表元素:
.ns-table { width: 100%; font-family: monospace; font-size: 14px; line-height: 24px; text-align: left; } .ns-tr { border-bottom: 1px solid black; } .ns-th { box-sizing: border-box; padding: 8px; color: green; font-weight: 700; vertical-align: bottom; } .ns-td { box-sizing: border-box; padding: 8px; vertical-align: top; }
我的问题是 th 40px . td 但是,正在渲染 41px 不遵守 border-box th 和 box-sizing: border-box; 所有物
th
40px
td
41px
border-box
box-sizing: border-box;
Thx提前。