0

所以我有一个论坛,当论坛填满时,2 个内部 div 会“突破”主要的白色 div。知道为什么吗?我只是希望它们彼此之间有 5px 的小边框。这是我的 Css,它显示了我正在尝试做的事情。

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;
  }
4

1 回答 1

1

在主 div 上添加 css

overflow:hidden
于 2012-05-03T02:33:10.940 回答