eric meyer的css重置影响了标题

时间:2016-08-25 13:51:43

标签: html css

我正在使用Eric Meyer的css重置2.但是当我在我的网站中使用标题时,标题都是相同大小和小文本。我已经看到问题来自css reset。我试着从那里删除标题,但现在它们似乎从顶部有一个填充物。这是一个小提琴的例子:jsfiddle.net/50c9dsyu /.



h1 {
  color: gray; }
/* 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;
}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link href="sass\main.css" rel="stylesheet"/>
    <link href="css\reset.css" rel="stylesheet"/>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
  <h1>I like pizza</h1>
</body>
</html>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

正如评论中所指出的,这是任何CSS重置的预期行为。您添加的任何CSS都需要低于重置规则。我已经更新了你的小提琴。

/* Reset code goes here */

.myRule { 
    color: red;
}

http://jsfiddle.net/50c9dsyu/2/

注意H1的规则现在位于CSS的底部。