CSS - 我的HTML和BODY之间的白色差距

时间:2013-04-19 09:08:46

标签: css html5 boilerplate normalize

我正在尝试将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/

提前致谢。

2 个答案:

答案 0 :(得分:9)

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

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

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

h1 {
    margin: 0;
}

答案 1 :(得分:0)

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