315920-12a.html (669B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 label {color: red} 6 input:default + label {color: green} 7 input:not(:checked):not([checked]):not(:default) + label {color:green} 8 </style> 9 </head> 10 <body onload='document.getElementById("one").setAttribute("checked", "true"); 11 document.getElementById("two").removeAttribute("checked");'> 12 <form> 13 <input type="checkbox" name="group1" id="one" value="1"/> 14 <label id="l1" for="one">Should be no red</label><br> 15 <input type="checkbox" name="group1" id="two" value="2" checked="true"/> 16 <label id="l2" for="two">Should be no red</label> 17 </form> 18 </body> 19 </html>