<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title></title>
<style>
div.top{
background-color:darkmagenta;
min-height: 30px;
}
div.left,div.center,div.right,div.buttom{
float: left;
min-height: 200px;
}
.left{
30%;
background-color:lavenderblush;
}
.center{
55%;
background-color: greenyellow;
}
.right{
background-color: lightblue;
}
div.buttom{
background-color:#000000;
min-height: 15px;
}
@media screen and (min- 1200px) {
.left{
25%;
}
.center{
40%;
}
.right{
15%;
}
.top{
80%;
}
.buttom{
background-color: #000000;
80%;
}
}
@media screen and (min- 992px)and (max- 1200px) {
.left{
30%;
}
.center{
70%;
}
.right{
100%;
}
.top{
100%;
}
.buttom{
background-color: #000000;
100%;
}
}
@media screen and (min- 768px)and (max- 992px) {
.left,.right,.buttom,.top,.center{
100%;
}
}
</style>
</head>
<body>
<div class="top"></div>
<div class="left"></div>
<div class="center"></div>
<div class="right"></div>
<div class="buttom"></div>
</body>
</html>