<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html,body{margin: 0;padding: 0;}
.top{height: 10vh;background: #ccc;}
.middle{height: 80vh;background: #efefef;}
.bottom{height: 10vh;background: #000;}
.middle .left{width: 200px;height: 100px;background: pink;float: left;}
.middle .center{height: 100px;background: yellow;overflow: hidden;}
.middle .right{width: 200px;height: 100px;background: green;float: right;}
</style>
</head>
<body>
<div class="top"></div>
<div class="middle">
<div class="left"></div>
<div class="right"></div>
<div class="center"></div>
</div>
<div class="bottom"></div>
</body>
</html>