微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

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

提前致谢.

解决方法

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

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

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

h1 {
    margin: 0;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。