2012-05-03 120 views
0

所以我有一個論壇,當論壇填滿足夠的時候,2個內部div打破了主要的白色div。任何想法爲什麼?我只是希望他們彼此之間有5px的小邊界。這是我的Css,它顯示了我想要做的事情。Div的重疊

的CSS

#white { 
     width:860px; 
    height:auto; 
    min-height:325px; 
    margin-top:30px; 
    padding-bottom:5px; 
    margin-left: auto; 
    margin-right: auto; 
    position:relative; 
    top:60px; 
    background:rgba(243, 243, 243, 0.7); 
    -webkit-border-radius: 20px; 
    -moz-border-radius: 20px; 
    border-radius: 20px; 
    } 

    #blue { 
    background-color:#CDCDCD; 
    margin-right: auto; 
    width:830px; 
    min-height:305px; 
    height:auto; 
    position:relative; 
    top:10px; 
    left:15px; 
    background:rgba(11, 185, 250, 0.8); 
    } 

    #grey { 
    background-color:#292929; 
    margin-right: auto; 
    left: 5px; 
    width:820px; 
    min-height:292px; 
    height:auto; 
    position:relative; 
    top:5px; 
    background:rgba(224, 224, 224, 0.8); 
    padding-bottom:2px; 
    } 

    #container { 
    margin-right: auto; 
    left: 5px; 
    width:795px; 
    min-height:292px; 
    height:auto; 
    position:relative; 
    top:5px; 
    font-size:17px; 
    right:15px; 
    } 

回答

1

新增CSS主DIV

overflow:hidden 
+0

是啊!謝謝! 4分鐘直到我可以說你給我寫回答x_x! –