Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
Answer
Submit
<!DOCTYPE html> <html lang="en"> <head> <title>Learn CSS</title> </head> <body> <div class="first-child-demo"> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </div> </body> </html>
.first-child-demo p:first-child { color: red; }
//Javascript