LoginSignup
0
0

More than 5 years have passed since last update.

cssでテーブルデザインする時の注意点

Posted at

テーブルデザインで">"を使用する際の注意点

必ず、tbodyを書かないと有効にならないらしい。
下記がサンプル。

例 その1

index.html
  <table>
    <tr>
      <td>text</td>
      <td>text</td>
    </tr>
  </table>
style.css

/* 無効 */
table > tr > td {
  color : #f00;  /* タグ通りに書いても効かない */
}

/* 有効 */
table > tbody > tr > td {
  color : #f00;  /* tbodyを書かないと有効にならない */
}

例 その2

index.html
  <table>
    <tbody>
      <tr>
        <td>text</td>
        <td>text</td>
      </tr>
    </tbody>
  </table>
style.css
/* 有効 */
table > tbody > tr > td {
  color : #f00;  /* タグ通り */
}
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