Cuéntanos qué está pasando:
establezco el valor de “box-shadow” en: 0 4px 8px grey, tal como piden, en mi selector de “.card” y no me lo da por bueno.
.card {
box-shadow: 0 4px 8px grey;
}
Tu código hasta el momento
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greeting Card</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="card" id="greeting-card">
<h1>Happy Birthday!</h1>
<p class="message">
Wishing you all the happiness and joy on your special day!
</p>
</div>
</body>
</html>
/* file: styles.css */
body {
font-family: Arial, sans-serif;
padding: 40px;
text-align: center;
background-color: brown;
}
.card {
background-color: white;
max-width: 400px;
padding: 40px;
margin: 0 auto;
/* User Editable Region */
border-radius: 10px;
box-shadow: 0 4px 8px grey;
/* User Editable Region */
}
Información de tu navegador:
El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Safari/605.1.15
Información del Desafío:
Diseña una Tarjeta de Felicitación - Paso 6