中心的div看看這個小提琴:https://jsfiddle.net/hkbynkmf/1/與整體邊框
如何讓綠色邊框四處流動所有的div,無格「溢出」的邊界?上面的div是可以的,但是較低的不是。 另外,我需要一些divs之間的距離;
我知道填充和邊距是透明的,所以我選擇了(綠色)邊框來說明我的觀點。最後,清關應該是透明的。
HTML:
body {
position: relative;
background-color: #ff0000;
background-repeat: no-repeat;
background-attachment: fixed;
padding: 0px;
border: 10px solid #190;
margin: 0px;
}
#header {
position: relative;
margin:0 auto; /* div will be H-centered */
top: 10px;
left: 0px;
bottom: 0px;
right: 0px;
width: 960px;
height: 250px;
background-color: #DDDDDD;
overflow: hidden; /* Keep all sub-elements inside this div */
}
#intro {
position: relative;
margin:0 auto; /* div will be H-centered */
top: 15px;
left: 0;
bottom: 0px;
right: 0px;
width: 960px;
height: 150px;
background-color: blue;
overflow: hidden; /* Keep all sub-elements inside this div */
}
<body> <!--position: relative;-->
<div id="header"> <!--position: relative;-->
</div>
<div id="intro"> <!--position: relative;-->
</div>
</body>
加上'填充底:15px的;'body元素 – bhv