Recently, there seems to be an issue with radio buttons and checkboxes on my website after a Google Chrome update. I have not made any changes to the CSS in months and everything works fine on other browsers like Firefox, Safari, IE9, and IE10.
If you want to see the problem, check out this jsFiddle example (with a link to my CSS file):
<input type="radio" name="sex" value="male">Male<br>
<input type="radio" name="sex" value="female">Female<br>
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>
<input type="checkbox" name="vehicle" value="Car">I have a car
Even after removing all styles using Chrome's dev tools, the issue persists. My website uses Twitter Bootstrap 2.0.2, but when I load the file separately, everything displays correctly. Any suggestions?