「CSS」nth-child(odd)で奇数行の子要素にスタイルを適用する

環境
Google Chrome 104.0.5112.102
Windows 10 Home 64bit

構文
要素:nth-child(odd){スタイルコード}
奇数行要素の子要素にスタイルを適用します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<!DOCTYPE html>
<html>
<style>
table {
border-collapse: collapse; /*重ねて表示*/
width: 200px;
caption-side:bottom; /* テーブルの見出しの位置*/
}
td {
border: 1px solid red;
}
/*要素の奇数行の子要素*/
table.cft tr:nth-child(odd){
background-color:green;
}
</style>
<body>
<table class="cft">
 <caption>都市一覧</caption>
<tr><td>101</td><td>東京</td></tr>
<tr><td>202</td><td>大阪</td></tr>
<tr><td>303</td><td>福岡</td></tr>
<tr><td>303</td><td>福岡</td></tr>
</table>
</body>
</html>
<!DOCTYPE html> <html> <style> table { border-collapse: collapse; /*重ねて表示*/ width: 200px; caption-side:bottom; /* テーブルの見出しの位置*/ } td { border: 1px solid red; } /*要素の奇数行の子要素*/ table.cft tr:nth-child(odd){ background-color:green; } </style> <body> <table class="cft">  <caption>都市一覧</caption> <tr><td>101</td><td>東京</td></tr> <tr><td>202</td><td>大阪</td></tr> <tr><td>303</td><td>福岡</td></tr> <tr><td>303</td><td>福岡</td></tr> </table> </body> </html>
<!DOCTYPE html>
<html>
<style>
  table {
    border-collapse: collapse; /*重ねて表示*/
    width: 200px;
    caption-side:bottom;  /* テーブルの見出しの位置*/
  }
  td {
    border: 1px solid red;
  }
  /*要素の奇数行の子要素*/
  table.cft tr:nth-child(odd){
    background-color:green;
  }
</style>
<body>
<table class="cft">
 <caption>都市一覧</caption>
  <tr><td>101</td><td>東京</td></tr>
  <tr><td>202</td><td>大阪</td></tr>
  <tr><td>303</td><td>福岡</td></tr>
   <tr><td>303</td><td>福岡</td></tr>
</table>
</body>
</html>

結果
テーブルの奇数行を緑色にします。

CSS

Posted by arkgame