电话
13363039260
您可以使用以下方法之一设置 HTML 表格的背景
bgcolor
属性 - 可以为整个表格或仅为一个单元格设置背景颜色。background
属性 - 可以为整个表设置背景图像或仅为一个单元设置背景图像。bordercolor
属性 - 可以设置边框颜色。<body>
<table border = "1" bordercolor = "green" bgcolor = "yellow">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</table>
</body>