html中表格的背景颜色
时间: 2024-04-20 13:06:32 浏览: 172
html背景颜色大全
在HTML中,可以通过使用`bgcolor`属性来设置表格的背景颜色。例如,要将表格的背景色设为黄色,可以使用以下代码:
```html
<table bgcolor="yellow">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>
```
也可以通过CSS来设置表格的背景色,例如:
```html
<style>
table {
background-color: yellow;
}
</style>
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>
```
阅读全文