Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Every time I hover over the label of a checkbox it turns yellow:

Markup

<input type="checkbox" value="hello" id="hello" name="deletefiles[]"/>
<label for="hello">hello</label>

CSS

label:hover, label:active {
   background:yellow;
}

When I hover over the related checkbox, I want the label to highlight. Is there a way to fire the same hover rule using CSS if I hover over the checkbox as well? Or will I have to use JavaScript for this...?

share|improve this question

3 Answers

up vote 2 down vote accepted

You can use a CSS sibling selector, like this:

label:hover, label:active, input:hover+label, input:active+label {
    background:yellow;
}

Note that this won't work in IE6.

share|improve this answer
Won't it be nice when IE6 market share is small enough we can stop worrying about what doesn't work in it? It's down to 7.2%. See w3schools.com/browsers/browsers_stats.asp – kbrimington Jul 29 '10 at 4:18
1  
i stoped supporting ie6 5years ago! :) – matt Jul 29 '10 at 4:31
second-question!!! is it possible to highlight the label IF THE CHECKBOX IS CLICKED/SELECTED? that would be interesting! – matt Jul 29 '10 at 4:32
@mathiregister: I'm jealous... – SLaks Jul 29 '10 at 4:32
You mean if it's checked, but not if it's unchecked? You can't do that without Javascript – SLaks Jul 29 '10 at 4:33
show 3 more comments

Just put the checkbox inside the label:

<label for="hello">
  <input type="checkbox" value="hello" id="hello" name="deletefiles[]"/>
  hello
</label>

Now when you hover over the checkbox, you'll also be hovering over the label, and your existing rules will suffice to highlight it.

share|improve this answer
this is valid? interesting – WalterJ89 Jul 29 '10 at 4:10
1  
@WalterJ89: indeed it is... In fact, you can skip the for attribute on the label when the associated input is nested within! – Shog9 Jul 29 '10 at 4:17
very cool.. Hard to believe I've never seen that or even tried it.. – WalterJ89 Jul 29 '10 at 4:32

The jQuery solution:

$(document).ready(function(){
   $('#hello, label[for="hello"]').hover(function(){$(this).addClass('.hover');},
                                         function(){$(this).removeClass('.hover');});

});

...

.hover
{
   background-color: yellow;
}

And this DOES work in IE6.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.