Specify your margins like this:
Code:
MARGIN: 0PX 0PX 0PX 0PX <!-- ORDER IS TOP RIGHT BOTTOM LEFT -->
And your paddings like this
Code:
PADDING: 0PX 0PX 0PX 0PX <!-- ORDER IS TOP RIGHT BOTTOM LEFT -->
Avoid using "em" measuring units they will very alot between fonts (that means different OS's, Browsers different measurment), use pixels (PX).
Specify Font-Sizes in Pixels (PX), pixels are fixed, will always be the same, should use them most often (in everything),"x-small" will vary from browser, resolution etc.
Few suggestions.
That's a huge CSS include, might want to trim it down, make general declars and add specifics to elements when needed, IE
Code:
DIV { FONT: 9PX/9PX "ARIAL"; BACKGROUND: TRANSPARENT }
<DIV STYLE="BACKGROUND: #FFFFFF"> </DIV>
Last edited by RedMage : 06-14-2003 at 06:28 PM.
|