-
-
<html>
-
<head>
-
<meta charset="UTF-8">
-
<!--设置缩放和绘制-->
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
-
<meta name="viewport" content="width=device-width, initial-scale=1">
-
<title>媒体查询自定义栅格系统</title>
-
<script src="../ mypethome/lib/html5shiv/html5shiv.js" ></script>
-
<script src="../ mypethome/lib/respond/respond.min.js" ></script>
-
<style>
-
/*
-
* 设置通用样式
-
*/
-
*{
-
margin: 0;
-
padding: 0;
-
list-style: none;
-
}
-
.container{
-
height: 40px;
-
margin: 0 auto;
-
background-color: gold;
-
}
-
/*
-
* 媒体查询
-
*/
-
@media screen and (max- 768px) {
-
/*超小屏幕*/
-
.container{
-
100%;
-
}
-
}
-
@media screen and (min- 768px) and (max- 992px){
-
/*小屏幕*/
-
.container{
-
750px;
-
}
-
}
-
@media screen and (min- 992px) and (max- 1200px){
-
/*大屏幕*/
-
.container{
-
970px;
-
}
-
}
-
@media screen and (min- 1200px) {
-
/*超大屏幕*/
-
.container{
-
1170px;
-
}
-
}
-
</style>
-
</head>
-
<body>
-
<div class="container">
-
-
</div>
-
-
</body>
-
</html>
-
------------恢复内容结束------------