Home  >  Article  >  Web Front-end  >  Use CSS to style each element that is the second child of its parent

Use CSS to style each element that is the second child of its parent

WBOY
WBOYforward
2023-09-11 08:57:08687browse

使用 CSS 为作为其父级的第二个子级的每个元素设置样式

To use CSS to style each

element that is the second child of its parent, use the CSS :nth-child(n) selector .

Example h2>

You can try running the following code to achieve:nth-child(n) selector

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:nth-child(4) {
            background: orange;
            color: white;
         }
      </style>
   </head>
   <body>
      <p>This is demo text 1.</p>
      <p>This is demo text 2.</p>
      <p>This is demo text 3.</p>
      <p>This is demo text 4.</p>
      <p>This is demo text 5.</p>
      <p>This is demo text 6.</p>
   </body>
</html>

The above is the detailed content of Use CSS to style each element that is the second child of its parent. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete
Previous article:2D Transforms in CSS3Next article:2D Transforms in CSS3