CSS 伪类

CSS :nth -child() 伪类根据元素在其父元素的子元素中的位置来选择元素。 :nth-child() 伪类采用的参数可以是数字、关键字或数学表达式。

语法

:nth-child(<nth> [of <complex-selector-list>]?) {
   /* ... */
} 
当使用 :nth-child 时() CSS 伪类,子元素计数包括任何元素类型的所有同级子元素,但只有与选择器的其他组件匹配的元素才会被选择。

可能的值

  • odd - 该值选择所有奇数子元素,例如 1,3,5..etc.

  • even -该值选择所有偶数子元素,例如 2,4,6...等。

  • 函数表示法 (<an+b>) - 该值选择每个 an+父容器中的第 b 个子元素,其中"a"是正整数,"n"是从 0 开始的计数器变量。"b"是另一个正整数。

下表描述了 CSS 选择器及其描述的列表:

选择器描述
tr:nth-child(odd) 或 tr:nth-last-child(2n+1)HTML 表格中的所有奇数行。
tr:nth-child(even) 或 tr:nth-last-child(2n)HTML 表格中的所有偶数行。
: nth-child(7)选择第七个元素。
:nth-child(5n)选择以下元素5的倍数,例如第5个、第10个、第15个等。
:nth-child(n+6)选择所有元素从第六个元素开始。
:nth-child(3n+4)选择 3 加 4 的倍数的元素,例如第 4 个、第 7 个、第 10 个、第 13 个等。
:nth-child(-n+3)选择前三个元素。
:nth-child(-n+3)选择前三个元素。 td>
p:nth-child(n)选择同级组中的所有 <p> 元素。
p:nth-child(1) 或 p:nth-child(0n+1)选择作为其父元素的第一个子元素的所有 <p> 元素。
p:nth-child(n+8):nth-child(-n+15)选择一组同级元素中的第八到第十五个 <p> 元素。

CSS :nth-child 示例

以下是如何仅选择段落元素并为其设置样式的示例 -

<html>
<head>
<style>
   p, em {
      display: inline-block;
      border: 3px solid black; 
      margin: 5px; 
      padding: 5px; 
   }
   .box1 p:nth-child(2n+1),
   .box2 p:nth-child(2n+1),
   .box3 p:nth-of-type(2n + 1) {
      background-color: pink;
      color: blue;
   }
</style>
</head>
<body>
   <h4>使用粉红色背景和蓝色字体颜色设置所有奇数 (1,3,5,7) 段落的样式。</h4>
   <div class="box1">
      <p>Orange</p>
      <p>Apple</p>
      <p>Mango</p>
      <p>Grapes</p>
      <p>Banana</p>
      <p>Watermelon</p>
      <p>Cheery</p>
      <p>Pear</p>
   </div>

   <h4>使用粉红色背景和蓝色字体颜色设置所有奇数段落(1、3、7 等)的样式,句子 5 除外,它不是段落元素。</h4>
   <div class="box2">
      <p>Orange</p>
      <p>Apple</p>
      <p>Mango</p>
      <p>Grapes</p>
      <em>Banana</em>
      <p>Watermelon</p>
      <p>Cheery</p>
      <p>Pear</p>
   </div>
   <h4>将段落 (1, 4, 6, 8 ) 设置为粉红色背景和蓝色(第 3 句除外),因为它不是段落元素。</h4>
   <div class="box3">
      <p>Orange</p>
      <p>Apple</p>
      <em>Mango</em>
      <p>Grapes</p>
      <p>Banana</p>
      <p>Watermelon</p>
      <p>Cheery</p>
      <p>Pear</p>
   </div>
</body>
</html> 

CSS :nth-child() - 列表示例

这里是如何设置 ol 列表中 li 元素样式的示例 -

<html>
<head>
<style>
   li:nth-child(1) {
      font-weight: bold;
      color: red;
   }
   li:nth-child(3n+4){
      background-color: pink;
   }
   li:nth-child(n+6){
      font-weight: bold;
   }
</style>
</head>
<body>
   <p>将第一个列表的样式设置为粗体和红色。</p>
  <p>从第四个列表项开始,每隔三个列表项设置粉红色背景的样式。</p>
  <p>将从第六个列表项开始的所有列表项设置为粗体。</p>
   <ol>
      <li>Item 1</li>
      <li>Item 2</li>
      <li>Item 3</li>
      <li>Item 4</li>
      <li>Item 5</li>
      <li>Item 6</li>
      <li>Item 7</li>
      <li>Item 8</li>
      <li>Item 9</li>
      <li>Item 10</li>
   </ol>
</body>
</html> 

CSS :nth-child() - <selector>

带有 <selector> 元素的:nth-child()伪类的语法如下:

li:nth-child(even of .fruits) {
   /* Your styles here */
} 

将选择器 li.fruits 移到函数之外将会选择所有具有水果类的 li 元素,无论它们在子元素列表中的位置如何。

li.fruits: nth-child(-n + 3); 

这里是如何使用 :nth-child(even of .fruits) 伪类的示例。这会选择 .fruits 元素的所有偶数子元素 -

<html>
<head>
<style>
   ul {
      list-style-type: none;
   }
   li {
      display: inline-block;
      border: 3px solid black; 
      margin: 5px; 
      padding: 5px; 
   }
   .fruits {
      background-color: pink;
   }
   li:nth-child(even of .fruits) {
      font-weight: bold;
      color: blue;
   }
</style>
</head>
<body>
   <h3>选择 .fruits 类的所有偶数子元素。</h3>
   <ul>
      <li>Orange</li>
      <li class="fruits">Apple</li>
      <li class="fruits">Mango</li>
      <li class="fruits">Grapes</li>
      <li class="fruits">Banana</li>
      <li>Watermelon</li>
      <li class="fruits">Cheery</li>
      <li class="fruits">Pear</li>
   </ul>
</body>
</html> 

CSS :nth-child() - <selector> 与 <selector> 第 n 个子元素

这里是如何使用 :nth 的示例-child() 伪类,根据元素在同级元素中相对于另一个元素的位置来选择元素 -

<html>
<head>
<style>
   ul {
      list-style-type: none;
   }
   li {
      display: inline-block;
      border: 3px solid black; 
      margin: 5px; 
      padding: 5px; 
   }
   .fruits {
      background-color: pink;
   }
   ul.list1 > li:nth-child(-n + 2 of .fruits) {
      color: blue;
   }

   ul.list2 > li.fruits:nth-child(-n + 4) {
      color: blue;
   }
</style>
</head>
<body>
   <p>设置列表中前两个子元素(使用 .fruits 类)的样式。</p>
   <ul class="list1">
      <li>Orange</li>
      <li class="fruits">Apple</li>
      <li>Mango</li>
      <li class="fruits">Grapes</li>
      <li class="fruits">Banana</li>
      <li>Watermelon</li>
      <li>Cheery</li>
      <li class="fruits">Pear</li>
   </ul>
   <p>选择前四个子元素,它们都是 .fruits 元素并且位于 .list2 列表中。</p>
   <ul class="list2">
      <li class="fruits">Orange</li>
      <li>Apple</li>
      <li class="fruits">Mango</li>
      <li>Grapes</li>
      <li>Banana</li>
      <li class="fruits">Watermelon</li>
      <li>Cheery</li>
      <li class="fruits">Pear</li>
   </ul>
</body>
</html> 

CSS :nth-child() - 修复表格条带的选择器

这里是如何使用 :nth-child() 伪类来设置表中偶数行的样式的示例,即使某些行是隐藏的 -

<html>
<head>
<style>
   table {
      margin: 20px;
   }
   .even-rows > tbody > tr:nth-child(even) {
      background-color: pink;
   }
   .even-rows-hidden > tbody > tr:nth-child(even of :not([hidden])) {
      background-color: pink;
   }
</style>
</head>
<body>
   <p>选择器选择表格主体中的所有偶数行。</p>
   <table class="even-rows">
         <thead>
         <tr>
            <th>名字</th>
            <th>分数</th>
         </tr>
      </thead>
      <tbody>
         <tr>
            <td>张三</td>
            <td>98</td>
         </tr>
         <tr>
            <td>李四</td>
            <td>88</td>
         </tr>
         <tr hidden>
            <td>王五</td>
            <td>92</td>
         </tr>
         <tr>
            <td>赵六</td>
            <td>97</td>
         </tr>
         <tr>
            <td>孙七</td>
            <td>91</td>
         </tr>
         <tr>
            <td>周八</td>
            <td>85</td>
         </tr>
      </tbody>

   </table>
   <p>选择器选择表主体中的所有偶数行,但跳过任何隐藏的行。</p>
   <table class="even-rows-hidden">
      <thead>
         <tr>
            <th>名字</th>
            <th>分数</th>
         </tr>
      </thead>
      <tbody>
         <tr>
            <td>张三</td>
            <td>98</td>
         </tr>
         <tr>
            <td>李四</td>
            <td>88</td>
         </tr>
         <tr hidden>
            <td>王五</td>
            <td>92</td>
         </tr>
         <tr>
            <td>赵六</td>
            <td>97</td>
         </tr>
         <tr>
            <td>孙七</td>
            <td>91</td>
         </tr>
         <tr>
            <td>周八</td>
            <td>85</td>
         </tr>
      </tbody>
   </table>
</body>
</html>