2014-08-30 23 views
0

我正在嘗試更改h1元素的字體大小,但它似乎並未覆蓋重置CSS文件。我有兩次定義風格的運氣,但這似乎不是最優雅的解決方案。謝謝。Eric Meyers的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; 
} 
+0

你能演示這個問題嗎? – 2014-08-30 13:58:22

回答

3
// Headers 

h1{ 
    font-size: 40px; 
} 

// Headers沒有標記起來CSS意見的有效方式 - 因爲錯誤的,下面的規則不能被解析。

使那個 CSS評論,/* Headers */,它應該工作正常。

下一次,請驗證您的代碼之前問 - 這樣做會告訴你,已經。

+0

指出它! +1 – 2014-08-30 14:06:40