效果图:


<!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>
*{
margin: 0;
padding: 0;
}
div{
height: 100vh;
}
.left,.right{
position: absolute;
width: 200px;
background-color: burlywood;
}
.left{
left: 0;
}
.right{
right: 0;
}
.center{
margin: 0 200px;
background-color: cornflowerblue;
}
</style>
</head>
<body>
<div class="left">左边</div>
<div class="right">右边</div>
<div class="center">中间</div>
</body>
</html>