div调整浏览器窗口的大小

时间:2012-12-30 12:14:12

标签: css html

我是这个网站的新手,所以请揭露我的错误。   我想将第三个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>

1 个答案:

答案 0 :(得分:1)

#wrapper固定宽度:

#wrapper {
  width: 1340px; /* 720 + 300 + 320 */
}