删除页面顶部的空白

时间:2016-11-09 00:23:58

标签: html css twitter-bootstrap twitter-bootstrap-3

如何摆脱页面顶部与蓝色div之间的差距?请注意,加载了bootstrap。



html,
body {
  margin: 0;
  padding: 0;
  background: #444;
}
#root {
  margin: 0 auto;
  width: 960px;
  background-color: blue;
}

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div id='root'>
  <h1>Header Header</h1>
</div>
&#13;
&#13;
&#13;

http://codepen.io/wasteland/pen/qqOddN

谢谢

1 个答案:

答案 0 :(得分:4)

您需要在margin: 0上指定h1

revised codepen

基本上,您需要覆盖从三个不同来源应用于h1的上边距:

enter image description here