gpt4 book ai didi

html - Eric Meyers Reset 上的 CSS 覆盖

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:14 24 4
gpt4 key购买 nike

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

最佳答案

// Headers

h1{
font-size: 40px;
}

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

让它成为一个真正的 CSS 注释,/* Headers */,它应该可以正常工作。

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

关于html - Eric Meyers Reset 上的 CSS 覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25583129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com