
03-16-2005, 05:33 AM
|
 |
SEO
|
|
Join Date: Feb 2005
Location: C:\Norway
Posts: 122
|
|
Quote:
|
Originally Posted by Paz
Your CSS looks non-standard to me...
I'm sure "padding:0px 3px;" is causing the problem:
It should be (say)
padding:0px 1px 2px 3px; or
padding-left:0px; padding-top:1px; etc.
similarly for the borders.
I prefer
border-left:1px solid #000000 for example
Cheers,
Paz.
|
I agree that padding probably is causing the problem since IE isn't threating padding correct (but gives the correct look this time), I will take a look at the problem later just to see if I can learn something. padding:0px 3px isn't a problem, it's just a shortening of the code, it's the same as padding: 0 3px 0 3px. (And you don't have to write 0px, if something is zero, well than you don't have to add which value it's zero).
|