亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

    HTML的<table> 標簽

    HTML <table> 標簽

    HTML的&lt;table&gt; 標簽

    所有瀏覽器都支持 <table> 標簽。

    定義和用法(推薦學習:HTML入門教程)

    <table> 標簽定義 HTML 表格。

    簡單的 HTML 表格由 table 元素以及一個或多個 tr、th 或 td 元素組成。

    tr 元素定義表格行,th 元素定義表頭,td 元素定義表格單元。

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

    實例

    一個簡單的 HTML 表格,包含兩行兩列:

    <html> <body>  <table border="1">   <tr>     <th>Month</th>     <th>Savings</th>   </tr>   <tr>     <td>January</td>     <td>$100</td>   </tr> </table>  </body> </html>

    贊(0)
    分享到: 更多 (0)
    網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號