Does anyone know how to hide the indicator on a radio button when it's unchecked? I've attempted the following CSS codes, both together and separately:
input[type=radio]:unchecked, input:unchecked {
border:none; visibility:hidden; display:none
}
Is there a way to hide the circular border of the input radio/checkbox indicator using only CSS?
Thank you.