Home › Forums › CSS › Remove Content after ( › Re: Remove Content after (
February 19, 2013 at 5:54 am
#125187
Participant
Could even use attribute selectors if the labels are set up properly.
input#check-you-want-to-hide { display: none; }
label[for=”check-you-want-to-hide”] {display: none;}