Tell us what’s happening:
There’s no preview or the like and it wont pass the border requirements for 15 and 16. Is there a bug here?
Your code so far
<!-- 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>Confidential Email</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main id="email">
<div id="confidential"></div>
<div id="top-secret"></div>
<p>1<span class="blurred">2</span></p>
<p>1<span class="blurred">2</span></p>
<p>1<span class="blurred">2</span></p>
</main>
</body>
</html>
/* file: styles.css */
#email{
padding: 50px;
margin-top: 50px;
width: 500px;
border: 2px;
box-sizing: border-box;
}
#confidential{
display: inline-block;
padding: 50px;
margin-left: 50px;
border: 2px;
transform: rotate(45deg);
}
#top-secret{
display: inline-block;
padding: 50px;
margin-left: 50px;
border: 2px ;
transform: rotate(45deg);
}
.blurred{
filter: blur(3px);
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Build a Confidential Email Page - Build a Confidential Email Page