CSS重置不适用于Firefox和文本

时间:2013-01-16 18:58:06

标签: css firefox reset

我一直致力于Eric Meyer CSS重置。我有一个文字很重的网站。重置适用于边距。但它并没有适用于字体和字体大小。即使我有一个重置,Firefox似乎也会使所有文本变小。有没有办法在CSS代码中解决这个问题?

或者有没有可用的Firefox黑客攻击?如果你想查看我的问题是在chrome中加载我的页面,然后在Firefox中加载并比较:http://emilymagnuson.com/mynews/index.html

另外,我是初学者,所以如果有一些我明显失踪的东西,请告诉我。非常感谢。

谢谢!

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
} 
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
   quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


#box {
    background-color: #0F3;
    margin: 0px;
    float: left;
    height: 200px;
    width: 300px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    font-family: "Courier New", Courier, monospace;
    font-size: 1em;
    color: #F00;
}

1 个答案:

答案 0 :(得分:1)

上述reset.css未在the site you've linked above中链接!

此外,这对我来说似乎是一个舍入错误。

您的CSS规则:

.BodyType {
    font-size: 1.125em;
    line-height: 1.65em;
}

Firefox和Chromium都显示1.125em字体大小,而Opera在Dragonfly中显示1.13em

包含reset.css并使用完整的测试用例进行测试。如果仍存在差异,请尝试将小数位数限制为两位(例如1.13em)。

如果在body - 元素上设置字体大小的像素值,请尝试使用导致整数值的分数。例如,基本字体大小10px和元素字体大小1.125em将导致计算字体大小为11.25px,而元素字体大小为1.2em计算字体大小为12px