×
×
Correct!
In addition to the green shadow, add a red shadow with 3px horizontal and vertical shadow, and a 10px blur effect.
<style>
h1 {
text-shadow: 2px 2px 5px green, 3px 3px 10px red;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
<style>
h1 {
text-shadow: 2px 2px 5px green,3px 3px 10px red;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
Not CorrectClick here to try again. Correct!<style> h1 { text-shadow: 2px 2px 5px green; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |