<style>
.left{
width: 200px;
float: left;
background-color: rgb(139, 90, 90);
}
.right{
width: 200px;
float: right;
background-color: rgb(139, 90, 90);
}
.center{
overflow: hidden;
}
</style>
<body>
<div class="left">1</div>
<div class="right">2</div>
<div class="center">3</div>
</body>