Menu
×
×
Correct!
Exercise:Create a class selector named "special". Add a color property with the value "blue" inside the "special" class.
<!DOCTYPE html>
<html> <head> <style> @(8) @(1) @(10); @(1) </style> </head> <body> <p class="special">My paragraph</p> </body> </html>
<!DOCTYPE html>
<html> <head> <style> .special { color:blue; } </style> </head> <body> <p class="special">My paragraph</p> </body> </html> Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 90 exercises.
Are you sure you want to continue?