BFC4
HTML
<div class="aside"></div>
<div class="main"></div>
CSS
body {
width: 300px;
position: relative;
}
.aside {
width: 180px;
height: 150px;
float: left;
background: blue;
}
.main {
height: 200px;
background: #f00;
overflow:hidden;
}