Tell us what’s happening:
Your code so far
I have a constant error in this point: When the checkboxes are selected, there should be a checkmark ✓ in the center of the checkbox. I have been trying to fix it for hours but I think the code works well I don't know where the error is.
input[type="checkbox"] {
appearance: none;
width: 20px;
height: 20px;
border: 2px solid black;
border-radius: 5px;
}
input[type="checkbox"]:checked {
background-color: lightgreen;
border-color: green;
vertical-align: middle;
}
input[type="checkbox"]:checked::before {
content: "✓";
display: block;
text-align: center;
color: white;
}
Lesson URL (copy - paste from your browser’s address bar)
