Is there a way to only by using css change the appearance of radio buttons. But, simple input radio, not with the labels css adjustment.
Like, here is my code: FIDDLE
<input type="radio" name="radio1" class="radiostyle" value="1">
<input type="radio" name="radio1" class="radiostyle" value="2">
<input type="radio" name="radio1" class="radiostyle" value="3">
Then, here is my css:
input[type=radio] {
display: none;
}
.radiostyle {
display:inline-block;
width:19px;
height:19px;
background-color: blue;
/*or instead of color use some image*/
}
Therefore, is there I way how to easy do it. Because, I would like to put images instead of simple radio buttons.