當(dāng)前位置:首頁 > IT技術(shù) > Web編程 > 正文

前端筆記1:html表格應(yīng)用
2022-04-25 22:54:01

<table></table>標(biāo)簽定義html表格

  • table 表示表格
  • tr 行
  • td 標(biāo)準(zhǔn)單元格
  • th 表頭單元格(在前)
  • border 表格邊框
  • width 表格寬度

<table border="3" width="500px" align="center" style="border-collapse:collapse;">

?????????<tr align="center" valign="top" bgcolor="green">

????????????<th>姓名</th>

????????????<th>年齡</th>

????????????<th>愛好</th>

?????????</tr>

?????????<tr align="center" valign="top" bgcolor="red">

????????????<td>張辰龍</td>

????????????<td>23歲</td>

????????????<td>網(wǎng)絡(luò)</td>

?????????</tr>

?????????</table>

colspan 橫向合并

rowspan 縱向合并

本文摘自 :https://www.cnblogs.com/

開通會員,享受整站包年服務(wù)立即開通 >