<tr>要素


<tr>要素はHTMLの表(テーブル)要素の行要素であることを表します。

次の例は、キャプション付きテーブルを表示する例です。


    <!DOCTYPE html>

    <html lang="ja">
    
    <head>
      <meta charset="utf-8" />
    </head>
    
    <body>
    
      <table>
        <caption>各国の英語表記</caption>
        <thead>
          <tr>
            <th>日本語</th>
            <th>英語</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>日本</td>
            <td>Nippon</td>
          </tr>
          <tr>
            <td>米国</td>
            <td>United States of America</td>
          </tr>
          <tr>
            <td>スペイン</td>
            <td>Spain</td>
          </tr>
        </tbody>
      </table>
    
    </body>
    
    </html>
  

これで、ブラウザには次のように表示されます。

各国の英語表記
日本語 英語
日本 Nippon
米国 United States of America
スペイン Spain


関連項目


HTML目次 inserted by FC2 system