Fcc says my code is wrong for step 56 of responsive web design.
<input id="loving" type="checkbox"> <label for="Loving">Label</label>
Fcc says my code is wrong for step 56 of responsive web design.
<input id="loving" type="checkbox"> <label for="Loving">Label</label>
The value of the for
attribute should match the value of the id
attribute exactly, which includes capitalization (or lack of it).
Also, don’t change anything that was already there. The text after the input
should be Loving
, not Label
.
That was completely my bad lol. Thanks a lot mate.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.