0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Tableのスタイリング

Posted at

テーブルのスタイリング

  <table>
    <thead>
      <tr><th>会社名</th><th>住所</th></tr>
    </thead>
    <tbody>
      <tr><td>○○商事</td><td>東京都板橋区</td></tr>
      <tr><td>xx商事</td><td>東京都葛飾区</td></tr>
    </tbody>
  </table>
table {
  border-collapse: collapse; /*  ボーダーの間をなくす*/
  width: 600px;
}
th {
  border: 1px gray solid;
  padding: 8px;
  background-color: lightgray;
}

td {
  border: 1px solid gray;
  padding: 8px;
}

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?