LoginSignup
0
0

More than 1 year has passed since last update.

HTMLのTableのタグを簡単に生成する

Last updated at Posted at 2022-09-14

Table Tag Generator

tabletag.png
直感的な操作で複雑なテーブル構造も簡単に作成できます。
https://tabletag.net/ja/

HTML tableタグ 仕様

<table>タグの内側に含められるのは以下になります。

  • caption
  • colgroup
  • thead
  • tbody
  • tr(必須)
  • tfoot
  • scriptタグ等
example
<table>
    <thead>
        <tr>
            <th>thは見出しです。</th>
            <th>thは見出しです。</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>trは行です。</td>
            <td>tdは列です。</td>
        </tr>
    </tbody>
</table>

参考

WHATWG: table
https://html.spec.whatwg.org/multipage/tables.html
MDN: <table>: 表要素
https://developer.mozilla.org/ja/docs/Web/HTML/Element/table

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0