我試着去移動一個div另一個DIV中了一點,但是當我使用CSS移動一個div垂直向下
margin-top: 10px;
這使得在頂部有一個白色的差距。繼承人的HTML:
<div id="topb">
<div id="selection">
</div>
</div>
而且繼承人的CSS:
#topb {
background: url(images/tomato-background.jpg) no-repeat fixed;
background-size: cover;
height: 100%;
width: 101%;
margin-left: -10px;
}
#selection {
background-color: #4d4d4d;
width: 60%;
height: 500px;
margin: auto;
margin-top: 40px;
}
看起來你在#selection中有一個40px的頁邊距。您的保證金頂部10px在哪裏? – Joel