tags:

views:

174

answers:

2

Hi...got problems with my CSS style.

border widths doubled in IE, but in Mozilla, Opera, Safari, its ok.

here's my code:

.subPane{
border: #FF33FF thin dashed;
}

'thin' is like 1px in width, but when viewed in IE, its like 2px already.

:(

+3  A: 

You might just want to specify the width as 1px rather than using a qualitative label. This will be respected by all browsers.

Mark Brittingham
thanks. sorry. i just could not check both of ur answers.
bgreen1989
Lol - that is fine. Philippe gave a nice link as well so he deserves the points. Thanks for feedback though - not enough questions are followed up like this so I appreciated it.
Mark Brittingham
+4  A: 

Try this :

.subPane{
border: 1px dashed #FF33FF;
}

http://www.w3.org/TR/CSS2/box.html#propdef-border

Philippe
thanks for the link.:)
bgreen1989