<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>双飞翼布局</title>
<style>
.container{
margin: 0 auto;
width: 1000px;
}
.wrap{
width: inherit;
}
.main{
margin: 0 310px 0 210px;
border: 1px solid #dedede;
min-height: 600px;
}
.left{
width: 200px;
margin-left: -100%;
background-color: lightcoral;
}
.right{
width: 300px;
margin-left: -300px;
background-color: aqua;
}
.wrap,.left,.right{
float: left;
min-height: 600px;
}
</style>
</head>
<body>
<div>
<div>
<div>中间</div>
</div>
<div>
左侧
</div>
<div>右侧</div>
</div>
</body>
</html>