<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
#left{
width: 150px;
height: 100px;
background: red;
float: left;
}
#center{
background: green;
height: 100px;
}
#right{
width: 150px;
background: pink;
float: right;
height: 100px;
}
</style>
</head>
<body>
<div id='left'></div>
<div id='right'></div>
<div id='center'></div>
</body>
</html>