CSS - Padding In IE Issue?
I'm having trouble width some padding. In Chrome/Firefox it looks different than in Internet Explorer. In Internet Explorer it is much bigger. It is the .menu ul li{ display:i
Solution 1:
IE calculates padding as part of height/width, other browsers interpret it height/width plus padding. So try to give only height/width or padding/margin.
Solution 2:
if you want to unify the box model of ie with those of other browsers you can always use the box-sizing CSS3 property. it is not supported in older version of ie, so it's best to use border-box in chrome, ff, etc. than to use content-box for ie. for further reading look here - http://www.css3.info/preview/box-sizing/
Solution 3:
Because the different browser have different font styling even though you set the font-styling. Similarly ie have different front size. so you can write the code for IE.
Here the link to help how to specific css in ie only.
Post a Comment for "CSS - Padding In IE Issue?"