Menu
×
×
Correct!
Exercise:Set the background color of <p> elements, that are the first child of any element, to "lightblue". Hint: Use the :first-child pseudo-class. |
Edit This Code:
x
<html> <head> <style> </style> </head> <body> <p>This is a paragraph.</p> <p>This is also a paragraph</p> </body> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|