2016-11-09 155 views
3

我該如何擺脫頁面頂部和藍色div之間的差距?請注意,引導程序已加載。刪除頁面頂部的空白

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>

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

謝謝

回答

4

您需要在h1指定margin: 0

revised codepen

基本上,你需要重寫應用到h1從三個不同的來源上邊距:

enter image description here

+1

非常感謝。這樣可行。 – Wasteland