4

我正在尝试将 HTML5 Boilerplate + Normalize.css 用于我当前的项目,并且遇到了以下问题。

我的 HTML 标签和我的 BODY 标签之间似乎有一个差距。我试图弄清楚这是什么原因,但经过多次尝试都失败了。

我一定在这里或那里错过了什么。

<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

<title>Ridanis | Web Design &amp; Web Development</title>

<meta name="description" content="">
<meta name="viewport" content="width=device-width">

<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">

<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->

<!-- Wrapper / Start -->
<div class="wrapper">
<h1>Hello World!</h1>
</div>
<!-- Wrapper / End -->

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>

<script src="js/main.js"></script>
</body>
</html>

这是一个小提琴:http: //jsfiddle.net/C7gbC/

提前致谢。

4

2 回答 2

9

h1normalize.css根据浏览器默认值在元素上插入默认边距声明以保持一致性:

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

如果您手动将其归零(在您的主样式表中或通过直接修改 normalize.css ),差距将消失:

h1 {
    margin: 0;
}
于 2013-04-19T09:12:22.800 回答
0

发现这是我的页眉中“h2”的问题。iE8 和 Crome 中的“p”标签相同。只需设置边距:0;对于我在 main.css 页面开头设置的一些结构样式的“h1”和“p”标签。解决方案似乎有效

于 2013-05-16T21:38:30.343 回答