×
×
Correct!
Set a "10px" horizontal, and "10px" vertical, box shadow for the <div> element.
<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!<style> div {: 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> |