一個(gè)簡(jiǎn)單的 HTML 表格,包含兩行兩列:
1.<table> 標(biāo)簽定義 HTML 表格
2.簡(jiǎn)單的 HTML 表格由 table 元素以及一個(gè)或多個(gè) tr、th 或 td 元素組成
3.tr 元素定義表格行,th 元素定義表頭,td 元素定義表格單元
4.border 簡(jiǎn)寫屬性在一個(gè)聲明設(shè)置所有的邊框?qū)傩?br>
<table border="1">
<tr>
<th>name</th>
<th>age</th>
</tr>
<tr>
<td>class</td>
<td>$100</td>
</tr>
</table>