当前位置:首页>维修大全>综合>

html中表格边框的设置(html表格边框颜色怎么设置)

html中表格边框的设置(html表格边框颜色怎么设置)

更新时间:2024-05-11 00:39:55

html中表格边框的设置

一个简单的 HTML 表格:

<table border="1">

<tr>

<th>Month</th>

<th>Savings</th>

</tr>

<tr>

<td>January</td>

<td>$100</td>

</tr>

</table>

定义和用法

<table> 标签定义 HTML 表格。

简单的 HTML 表格由 table 元素以及一个或多个 tr、th 或 td 元素组成。

tr 元素定义表格行,th 元素定义表头,td 元素定义表格单元。

更复杂的 HTML 表格也可能包括 caption、col、colgroup、thead、tfoot 以及 tbody 元素。

更多栏目