【问题标题】:CSS override on Eric Meyers ResetEric Meyers 重置上的 CSS 覆盖
【发布时间】:2014-08-30 13:56:55
【问题描述】:

我正在尝试更改 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;
}

【问题讨论】:

  • 你能演示一下这个问题吗?

标签: html css font-size reset


【解决方案1】:
// Headers

h1{
    font-size: 40px;
}

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

将其设为真实 CSS 注释/* Headers */,它应该可以正常工作。

下一次,请在询问之前验证您的代码 - 这样做早就告诉您了。

【讨论】:

    猜你喜欢
    • 2014-01-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-03-06
    • 1970-01-01
    相关资源
    最近更新 更多