0

我是这个网站的新手,所以请坦白我的错误。我想将第三个 div 保持在同一个位置,并且在调整窗口大小而不是移动时应该出现一个滚动条。我不能使用固定宽度,因为我想在它下面再添加一个 div...

 #wrapper {
float:left;
height:600px;
         }

#one {
clear:right;
float:left;
width:720px;
height:600px;
    background-color:#000;

    }

#two {
clear:right;
float:left;
width:300px;
height:300px;
    background-color:#999;

   }

   #three {
clear:right;
float:left;
width:320px;
height:300px;
    background-color:#600;

    }

   <head>
   </head>

   <body>

   <div id="wrapper">

  <div id="one">
      </div>
      <div id="two">
      </div>
      <div id="three">
      </div>

  </div>

  </body>
4

1 回答 1

1

Give #wrapper fixed width:

#wrapper {
  width: 1340px; /* 720 + 300 + 320 */
}
于 2012-12-30T12:20:38.640 回答