I would like to know if it is possible to hide the checked radio button with css by using:
{ display:none; }
I don\'t know how to address
Try visibility:hidden; This will work.
visibility:hidden;
Here is the WORKING DEMO
The HTML:
<input class="checked" type="radio" checked />
The CSS:
input.checked[type="radio"]{visibility:hidden;}
I hope this is what you are looking for.