【HTML】テーブル作成の基本について(table,tr,td,th)
テーブルを作成するためには、tableタグ、trタグ、tdタグ、thタグを基本とし作成します。
tableタグ: 表で示すことを表すタグ <table>~</table> trタグ:行を定義 tdタグ:セルを定義 thタグ:見出し※一般的には太字でセンタリングされて表示 border属性:表全体の外枠線を定義
テーブル作成例
<table> <tr> <th>test</th>< <th>test2</th> </tr> <tr> <td>test3</td> <td>test4</td> </tr> </table>
↓↓表示結果↓↓
test | test2 |
---|---|
test3 | test4 |
コメントを残す