Other ways to write css to checked checkbox? -


pls help. css not functioning once uncheck/check. retains default load value.

input[type="checkbox"][checked] + label{} 

this 1 fine but, found weird not functioning on ie

input[type="checkbox"]:checked+label  

try below css :

input[type="checkbox"]:checked {   background-color: red;   } 

Comments

Popular posts from this blog

python - matpltolib navigation toolbar edit curves and parameters line color automatically changes issue -

node.js - Nodejs javascript implementation of PBEWithMD5AndTripleDES/CBC/PKCS5Padding -