Is there a non-javascript way of changing the color of a label when the corresponding checkbox is checked?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you have
you can do
See this working. Note that this won't work in non-modern browsers. |
|||||||||||||||||||
|
|
I like Andrew's suggestion, and in fact the CSS rule only needs to be:
I like to rely on implicit association of the
with CSS:
Example: http://jsfiddle.net/wrumsby/vyP7c/ |
||||
|
|
|
You can't do this with CSS alone. Using jQuery you can do HTML
CSS
jQuery
This will work in all browsers Check working example at http://jsfiddle.net/LgADZ/ |
|||||||||||||||
|