You probably either need to completely remove the font-size 100% setting from here:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
font-size: 100%; <!--REMOVE THIS OR CHANGE TO 98%-->
}
Or change it to something like 98%...IE reads this differently from other browsers. As ack154 said "em" is the best way to get your font sizes to look the same in all browsers.
Main Topics
Browse All Topics





by: ack154Posted on 2009-10-28 at 06:47:19ID: 25683153
What are you using to declare your font sizes in CSS? There can be rendering differences between using "px" or "em" or other sizes even. I believe using "em" is a little more proper, but perhaps using "px" will even it out?