是否有等效于 CSS 属性的 HTML 属性 border-collapse: collapse;
?
我正在尝试仅使用 HTML 实现相同的 1px 边框,而不使用 css。
table{
border-collapse: collapse;
}
<table border="1px" cellpadding="3">
<tr>
<td>Row 1</td>
<td>Row 1</td>
<td>Row 1</td>
</tr>
<tr>
<td>Row 2</td>
<td>Row 2</td>
<td>Row 2</td>
</tr>
</table>
原文由 Felix A J 发布,翻译遵循 CC BY-SA 4.0 许可协议
您可以尝试
cellspacing
。