<!DOCTYPE html>
<html>
<head>
<title>CSS :nth-child Selector</title>
<style>
p:nth-child(2n) {
background: blue;
color: white;
}
</style>
</head>
<body style="text-align:center">
<h1 style="color:Red;">
CodeWithRandom
</h1>
<h2>
CSS :nth-child Selector
</h2>
<p>
A frontend website to master frontend development
</p>
<p>
Become a pro frontend developer
</p>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.