lonewolf217 Posted March 10, 2009 Share Posted March 10, 2009 I have some CSS that works brilliantly in firefox but not at all in IE6, I am wonding if part of what I did is not compatible ? input[type="text"],input[type="password"] { border:1px solid #0000FF; background-color:#FFFFFF; color:#0000FF; margin-top:5px; } Unfortunetly I cannot link the site since it is internal only. in Firefox the form inputs are properly styled, but in IE, they are still the default style. Link to comment https://forums.phpfreaks.com/topic/148787-question-on-ie-vs-firefox-compatibility-for-input-form-styles/ Share on other sites More sharing options...
lonewolf217 Posted March 10, 2009 Author Share Posted March 10, 2009 I see this working properly on IE7. Is there a comparable IE6 alternative to this ? Link to comment https://forums.phpfreaks.com/topic/148787-question-on-ie-vs-firefox-compatibility-for-input-form-styles/#findComment-781267 Share on other sites More sharing options...
haku Posted March 11, 2009 Share Posted March 11, 2009 I believe that IE6 doesn't recognize this: input[type="text"] It will only recognize input (although I could be wrong - I don't use this method). You can get around this by assigning classnames to the fields you want to affect, and then targeting those classnames. Link to comment https://forums.phpfreaks.com/topic/148787-question-on-ie-vs-firefox-compatibility-for-input-form-styles/#findComment-781829 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.