Apologies for my lack of understanding, but I am facing an issue with applying an attribute to a label element with class "c". It seems to work fine with other objects, like buttons, but not with labels. I cannot figure out why such a simple thing is not working.
Here is the HTML code:
<button type="button" id="boton" disabled>hi</button>
<input type="checkbox" id="checky"/>
<label class="c" id="checkyl" for="checky">etiquette</label>
And here is the CSS code:
#boton:disabled:hover + .c {
font-weight: bold;
}