Eric Meyers Reset的CSS覆盖

时间:2014-08-30 13:56:56

标签: html css font-size reset

我正在尝试更改h1元素的字体大小,但它似乎不会覆盖重置的CSS文件。我有两次运气定义风格,但这似乎不是最优雅的解决方案。感谢。

/* 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;
}

这是我的CSS。

@import url('reset.css');
@import url('grid.css');
@import url(http://fonts.googleapis.com/css?family=Montserrat:700);

body{
    font-family: 'Montserrat', sans-serif;
}

// Headers

h1{
    font-size: 40px;
}

1 个答案:

答案 0 :(得分:3)

// Headers

h1{
    font-size: 40px;
}

// Headers不是在CSS中标记注释的有效方法 - 由于错误,因此无法解析以下规则。

制作一个真正的 CSS评论,/* Headers */,它应该可以正常工作。

下次,请在询问之前验证您的代码 - 这样做会告诉您已经的。