Click to See Complete Forum and Search --> : [RESOLVED] padding in IE doesn't work


SaveSheep
09-12-2006, 12:10 PM
Is there a way to have a seperate style if the browser is IE?

Just on my form tags; padding works great in every other browser but this one. IE doesn't stretch the input field out, so the text just shows up cut off.

Maybe a way to if browser = IE, padding:0px; ?

KDLA
09-12-2006, 02:24 PM
What are you using the input for? It could be that you're using it for the wrong purpose.

SaveSheep
09-12-2006, 02:27 PM
heya,

i actually wound up just defining a height for the fields and it works just fine.

thanks!

takinduro
09-12-2006, 07:51 PM
for next time put this anywhere

<!--[if lte IE 6]>
<link rel="stylesheet" href="whatever.css" type="text/css" />
<![endif]-->

this would call a seperate stylesheet or you can jus tdefine your style in there for ie.