码迷,mamicode.com
首页 > 其他好文 > 详细

自适应页面

时间:2016-07-31 19:08:08      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

<!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{
width: 30%;
background-color:lavenderblush;
}
.center{
width: 55%;
background-color: greenyellow;
}
.right{
background-color: lightblue;
}
div.buttom{
background-color:#000000;

min-height: 15px;

}
@media screen and (min-width: 1200px) {
.left{
width: 25%;
}
.center{
width: 40%;
}
.right{
width: 15%;
}
.top{
width: 80%;
}
.buttom{
background-color: #000000;
width: 80%;
}
}
@media screen and (min-width: 992px)and (max-width: 1200px) {
.left{
width: 30%;
}
.center{
width: 70%;
}
.right{
width: 100%;
}
.top{
width: 100%;
}
.buttom{

background-color: #000000;
width: 100%;
}
}
@media screen and (min-width: 768px)and (max-width: 992px) {
.left,.right,.buttom,.top,.center{
width: 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>

自适应页面

标签:

原文地址:http://www.cnblogs.com/223y/p/5723648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!