1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HTML_4 表 テーブル 

Posted at

#テーブル

<table border="5" bordercolor="色" bgcolor="yellow" width ="100px" height="200px" cellpadding="10"> 
// 枠線の太さ、色の指定 背景色 表のサイズ セルの余白
    <tr>
      <th>名前</th>
      <th>年齢</th>
    </tr>
    <tr>
      <td>高橋</td>
      <td>23</td>
    </tr>
    <tr>
      <td>佐藤</td>
      <td>22</td>
    </tr>
 </table>

###セルを結合

//横方向に結合する
<td colspan="2">apple</td>
//縦方向に結合する
<td rowspan="2">りんご</td>

###文字のレイアウト

<tr align="left"> //左寄せ
<tr align="center"> //中央
<tr align="right"> //右寄せ
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?