How do you select a radio button in CSS? The HTML I am working with is generated so I cannot add class or other attributes to it.
I found input[type=\"radio\"] on the
The attribute selector (input[type="radio"]) is the correct solution, widely supported by everything but IE6 :)
If you have no ability to modify the HTML to inject classname support (or access to javascript to accomplish this) then your options are:
A). to make sure your site doesn't depend on this, and allow IE6 to degrade gracefully.
B). live without it