radio form label css code example
Example 1: checked radio button css
//html
\
//css
input[type="radio"]:checked+label { font-weight: bold; }
Example 2: radio by default selected
checked="checked"
//html
\
//css
input[type="radio"]:checked+label { font-weight: bold; }
checked="checked"