Home > Article > Web Front-end > Use CSS to style each element that is the second child of its parent
To use CSS to style each
element that is the second child of its parent, use the CSS :nth-child(n) selector .
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!