79831927

Date: 2025-11-27 16:44:02
Score: 0.5
Natty:
Report link

Only the first item works because you reuse the same id (fav) for every element.
In HTML, ids must be unique. The CSS selector #fav + label only matches the first occurrence.

The fix -> Use classes instead of ids, and scope the styling to each pair using a wrapper.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Taksh Kothari