Tell us what’s happening:
i think there is a bug or something. Question says we should create a selector for checkboxes. i did that and the code sstill doesn’t pass
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<h1>Feature Selection</h1>
<head>
<meta charset="utf-8">
<title>Selection Feature Page</title>
</head>
<body>
<div class="feature-card-container">
<label class="feature-card">Feature-card
<input type="checkbox"></input>
</label>
<label class="feature-card">Feature-card
<input type="checkbox"></input>
</label>
</div>
</body>
</html>
/* file: styles.css */
.body {
text-align: center;
appearance: none;
}
input[type="checkbox"] {
appearance: none;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36
Challenge Information:
Design a Feature Selection Page - Design a Feature Selection Page