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 using :checked selector:
:checked
input[type="radio"]:checked { display: none; }
Demo: http://jsfiddle.net/RkzG5/