×
×
Correct!
Set a "10px" horizontal, and "10px" vertical, "red" box shadow for the <div> element.
<style>
div {
box-shadow: 10px 10px red;
}
</style>
<body>
<div>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</div>
</body>
<style>
div {
box-shadow: red 10px 10px;
}
</style>
<body>
<div>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</div>
</body>
Not CorrectClick here to try again. Correct!<style> div { box-shadow:; } </style> <body> <div> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </div> </body> |