媒体查询自定义栅格系统
Posted onesea
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了媒体查询自定义栅格系统相关的知识,希望对你有一定的参考价值。
-
-
<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-width: 768px) {
-
/*超小屏幕*/
-
.container{
-
width: 100%;
-
}
-
}
-
@media screen and (min-width: 768px) and (max-width: 992px){
-
/*小屏幕*/
-
.container{
-
width: 750px;
-
}
-
}
-
@media screen and (min-width: 992px) and (max-width: 1200px){
-
/*大屏幕*/
-
.container{
-
width: 970px;
-
}
-
}
-
@media screen and (min-width: 1200px) {
-
/*超大屏幕*/
-
.container{
-
width: 1170px;
-
}
-
}
-
</style>
-
</head>
-
<body>
-
<div class="container">
-
-
</div>
-
-
</body>
-
</html>
-
以上是关于媒体查询自定义栅格系统的主要内容,如果未能解决你的问题,请参考以下文章
Bootstrap navbar 在自定义宽度上折叠媒体查询