IE CSS help

you have to set the margin and padding properties to 0 if that is what you want.
i had a problem similar, you must set both as IE and FF have different default values for them.

padding: 0 0 0 0;
margin: 0 0 0 0;
 
tsinc80697 said:
you have to set the margin and padding properties to 0 if that is what you want.
i had a problem similar, you must set both as IE and FF have different default values for them.

padding: 0 0 0 0;
margin: 0 0 0 0;

or

padding: 0;
margin: 0;

which does the same thing.....
 
Back
Top Bottom