:checked in css
by Sanjay
HTML
<input type="checkbox" id="startstop">
<label for="startstop" class="label"></label>
CSS
.label:after { content: "Unchecked"; }
#startstop:checked + .label:after {
content:"checked";
}
by Sanjay
<input type="checkbox" id="startstop">
<label for="startstop" class="label"></label>
.label:after { content: "Unchecked"; }
#startstop:checked + .label:after {
content:"checked";
}