Tell us what’s happening:
Seems many post about the last 2 step can’t be solved, I couldn’t find any help here, could you help? Thanks,
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Selection Feature Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Feature Selection</h1>
<div class="feature-card-container">
<label class="feature-card">
Cloud Storage
<input type="checkbox">
</label>
<label class="feature-card">
Dedicated Support
<input type="checkbox">
</label>
</div>
</body>
</html>
/* file: styles.css */
body{
border: 2px solid;
border-radius: 5px;
text-align: center;
height: 50vh;
}
input[type="checkbox"]{
appearance: none;
border: 3px solid grey;
width: 20px;
height: 20px;
vertical-align: middle;
transition: 0.3s;
}
input[type="checkbox"]:checked{
background-color: orange;
border: 3px solid pink;
}
input[type="checkbox"]:checked::after{
content:"✓";
text-align: center;
}
div{
border: 5px solid black;
border-radius: 5px;
text-align: right;
height: 10vh;
width: 30vh;
}
div:hover{
border-color: orange;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0
Challenge Information:
Design a Feature Selection Page - Design a Feature Selection Page