Menu
×
×
Correct!
Exercise:Set a "10px" horizontal, and "10px" vertical, box shadow for the <div> element.
<style>
div {
@(10): 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>
<style>
div {
box-shadow: 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!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?