Design a Feature Selection Page - Design a Feature Selection Page

Tell us what’s happening:

Hello! My problem is basic to the point of embarrassment. It’s about step 7. I did exactly what is needed, but result isn’t accepted and I can’t even start to style checkboxes because of that. What’s wrong with my code?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Selection Feature Page</title>
</head>

<body>
    <h1>Feature Selection</h1>
    <div class="feature-card-container">
        <label class="feature-card">
            <input type="checkbox" />
            Number one
        </label>
        <label class="feature-card">
            <input type="checkbox" />
            Number two
        </label>
    </div>
</body>

</html>
/* file: styles.css */
label {
  display: block;
}

input[type='checkbox'] {
  appearance: none;
  width: 30px;
  height: 30px;
  border: 3px solid red;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 YaBrowser/25.10.0.0 Safari/537.36

Challenge Information:

Design a Feature Selection Page - Design a Feature Selection Page

what is step 7 about? what are the lines that satisfy that?

Don’t forget to link your css in your html doc

I’m sorry, I can’t believe I missed such a simple thing. Problem solved, thank you very much!

Problem solved, it was just my inadvertence. Thank you for your time!