Edit in JSFiddle

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