Menu
×
×
Correct!
Exercise:Add a new shadow (do not remove the current one) to the <h1> element with: no horizontal or vertical shadow, 10px blur, and a red color. Hint: Add a new set of values to the text-shadow property. |
Edit This Code:
x
<html> <head> <style> h1 { text-shadow: 2px 2px 5px green; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> <!-- Mirrored from www.w3schools.com/css/exercise.asp?filename=exercise_css3_shadows3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:17:30 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|