Whenever I resize the browser, the 2nd div in .container positions below the first one.
<div class = "container">
     <div class = "one"></div>
     <div class = "two"></div>
</div>
The divs are really blank.
CSS
.container{
    overflow: hidden;
    width: 810px;
    min-width: 810px;
}
.one,.two{
    width: 300px;
    height: 450px;
}
.one{float:left}
 
     
     
     
    