|
This is a common problem when developing sites. It is due to the fact that preset spaces are different in firefox/mozilla than IE. You can rectify this issue by resetting all paddings and margins (set them to 0) at the beginning of your CSS file for the tags you feel create the problem. I usually do that at the beginning of my CSS file and later on in the document set the appropriate margins and paddings.
If this is not enough you can also target your code for IE only, put the IE specific settings in a separate CSS file and have it load via a conditional rule (so that if at a later stage IE does not need the target codes anymore, you can simply remove them without having to search your whole CSS file )
|