Is there any elegant way of applying a certain style to all elements under IE6? I can do it with some JavaScript, but I was wonderin
If you happen to be using jQuery, try adding this to your onDOMready:
$('input[type="text"]').addClass('typeText');
Then in your CSS you could so something like:
input.typeText, input[type="text"] { color:#efefef; }