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 に答える