CSS borders on IE

Shovel

Can't get enough of FH
Joined
Dec 22, 2003
Messages
1,350
Can you do some screenshots of what you mean in both please? Makes it easier to see precisely the bit you mean!

Ignore Clowneh. ;) (*fluffle Clowneh*)
 

SheepCow

Bringer of Code
Joined
Dec 22, 2003
Messages
1,365
On quick inspection all I can say is:

Code:
border: grey dashed 1px;

Should be ...

Code:
border: 1px dashed grey;
 

Shovel

Can't get enough of FH
Joined
Dec 22, 2003
Messages
1,350
SheepCow said:
On quick inspection all I can say is:

Code:
border: grey dashed 1px;

Should be ...

Code:
border: 1px dashed grey;
Is grey the right spelling? Is it not gray? I can never remember which is US and which is UK...

Might be better using a hex value for the colour? Try #DDD for a nice value grey.
 

Mixeh

Fledgling Freddie
Joined
Mar 13, 2004
Messages
2
SheepCow said:
On quick inspection all I can say is:

Code:
border: grey dashed 1px;

Should be ...

Code:
border: 1px dashed grey;

That has done it. I never knew IE was so picky with syntax. Thanks.

And thanks to the others for their help too.
 

Users who are viewing this thread

Top Bottom