Input type=“radio” and hidden radio button - problems in chrome?

lele816

New Member
I have this HTML:\[code\]<input type="radio"><span class="label"> <label id="options_34537_2label" for="options_34537_2"></label></span>\[/code\]Now I also have some CSS, which hides the radio button itself and puts an image in front of my label. \[code\]input[type="radio"] { display: none;}label:before { background: url("someimage.jpg") no-repeat scroll 0 0 transparent;}\[/code\]In IE and FF I can click the image to select the option, in Chrome, clicking does not work at all. Any idea how to solve this issue?Thanks!
 
Back
Top