html表格的背景颜色为白色,没有边框,cellspacing和cellpadding的值都为0
时间: 2024-05-24 13:13:38 浏览: 105
cellspacing和cellpadding的区别
可以使用以下代码实现:
<table style="background-color: white; border-collapse: collapse; border: none;" cellspacing="0" cellpadding="0">
<tr>
<td>内容1</td>
<td>内容2</td>
</tr>
<tr>
<td>内容3</td>
<td>内容4</td>
</tr>
</table>
这样就可以得到一个没有边框,背景为白色的表格了。
阅读全文