I would like to highlight 'The second paragraph' of p id="dd". Can I make it with nth-child? When I add "#dd" in styles, it stops to work.
<!DOCTYPE html>
<html>
<head>
<style>
#dd p:nth-child(3) {
background: red;
}
</style>
</head>
<body>
<p id="de">
<p>The first paragraph.</p>
<p>The second paragraph.</p>
<p>The third paragraph.</p>
<p>The fourth paragraph.</p>
</p>
<p id="dd">
<p>The first paragraph.</p>
<p>The second paragraph.</p>
<p>The third paragraph.</p>
<p>The fourth paragraph.</p>
</p>
</body>
</html>
` inside another `
`.
– Mohammad Usman Dec 30 '16 at 12:56