Скоро придут люди с
display:flex
и покажут как правильно сделать, но пока можете вот так:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>ГГ</title>
<style>
* {
margin:0;
padding: 0;
outline: none;
}
.container {
width: 100%;
height: 100px;
}
.container>div {
display: inline-block;
width: calc((100% - 300px)/2);
height: 100px;
background-color: red;
margin-right: -4px;
}
.container .center {
width: 300px;
background-color: green;
}
</style>
</head>
<body>
<div class="container">
<div></div>
<div class="center"></div>
<div></div>
</div>
</body>
</html>