Menu
×
×
Correct!
Exercise:Change the color of all <p> elements, that are immediate children of <div> elements, to "red". Hint: To select immediate children, separate the selectors with >. |
Edit This Code:
x
<html> <head> <style> </style> </head> <body> <div> <p>This is a paragraph inside a div element.</p> <p>This is another paragraph inside a div element.</p> <span><p>This a paragraph inside a span element, inside a div element.</p></span> </div> <p>This is a paragraph, not inside a div element.</p> <p>This is another paragraph, not inside a div element.</p> </body> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|