0
<div id="content">

   <div id="rectangle">

   <p>Consectetur adipiscing elit. Suspendisse potenti. Maecenas at nulla velit, quis bibendum ligula. Donec neque purus, porttitor et tempor non, molestie nec sem.</p>

   </div>
</div>


#content{

    margin:0px auto; 
    height:600px;
    width: 600px;
    background-color: white;`enter code here`
    -moz-box-shadow: inset 0 15px 2px rgba(0,0,0,.07); 
    -webkit-box-shadow: inset 0 15px 2px rgba(0,0,0,.07); 
    box-shadow: inset 0 15px 2px rgba(0,0,0,.07);   
}



.rectangle {
    width: 563px;
    height: 165px;
    background-color: #e7ebf1; 
    -moz-box-shadow:
        1px 1px 2px rgba(0,0,0,.2) ,
        inset 0 0 5px rgba(255,255,255,.6)
    -webkit-box-shadow:
        1px 1px 2px rgba(0,0,0,.2) ,
        inset 0 0 5px rgba(255,255,255,.6) ;
    box-shadow:
        1px 1px 2px rgba(0,0,0,.2),
        inset 0 0 5px rgba(255,255,255,.6) 
    background-image: -moz-linear-gradient(90deg, rgba(0,0,0,.05) 0%, rgba(255,255,255,.05) 100%);
    background-image: -o-linear-gradient(90deg, rgba(0,0,0,.05) 0%, rgba(255,255,255,.05) 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(0,0,0,.05) 0%, rgba(255,255,255,.05) 100%);
    background-image: linear-gradient(90deg, rgba(0,0,0,.05) 0%, rgba(255,255,255,.05) 100%);
    margin: 0 auto;
    }

我尝试在彼此顶部的框之间创建间距。
不知何故,两者都粘在一起,我无法设法在它们之间留出间距。当我添加边距或填充时,它不会改变任何东西。

4

2 回答 2

0

您在 CSS 中添加了类,但在 HTML 中rectangle定义了 id 。rectangle

现场演示

----------- 更新给 margin-top ------------------演示

于 2012-08-13T08:49:39.867 回答
0

margin: 0 auto;矩形的顶部和底部边距设置为 0,这就是它们之间没有间距的原因。

将其设置为margin: 15px auto;,您将有空间。

于 2014-01-01T00:35:04.370 回答