爲什麼內容div上的邊距還會推入intro div?我覺得在嵌套div時我犯了一個非常愚蠢的錯誤,但我真的不知道。嵌套div中的垂直邊距未按預期方式工作
body {
margin: 0px;
}
div.content {
text-align: center;
margin-top: 35px;
border-style: solid;
}
h1 {
display: inline-block;
margin: auto;
font-family: Lane;
color: white;
font-size: 80px;
}
div#intro {
background: blue;
height: 100%;
width: 100%;
}
<div id=intro>
<div class=content>
<h1>Text</h1>
</div>
</div>
完美的作品!謝謝。 – Rocky