How to change disabled checkboxlabel of aspcontrols
through CSS. Check disabled but the label colour is not changing even i tried
through CSS, so any clue or hint with CSS?
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
input[type="checkbox"]:checked+label{ font-weight: bold; }
input[type="checkbox"]:disabled+label
{
color:#ccc;
}