6. different checkbox style
Share
- accepted / - tried
The default checkbox style might not be what you want for most of the time, in this problem you are asked to create a different checkbox style.
- when unchecked, show a gray circle (
'color: gray'
) - when checked, show a green circle (
'color: green'
)
Set the circle with radius of 5px and don't add extra padding, the HTML structure is
<label class="my-checkbox"> <input type="checkbox" /> <span>a checkbox</span></label>