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

12栅格化布局

时间:2019-07-17 00:09:56      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:scala   div   title   http   imu   view   red   html   flow   

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
.container{
width: 900px;
height: 300px;
overflow: hidden;
box-sizing: border-box;
}
.container>.row{
width: 100%;
height:100%;
float: left;
overflow: hidden;
}


@media screen and (min-width: 600px){
.container{
width: 600px;
height: 300px;
border:1px solid #333;
box-sizing: border-box;
}
.container>.row>.col-l-1{
width: 8.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-l-2{
width: 16.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-l-3{
width: 25%;
height: 100%;
float: left;
}
.container>.row>.col-l-4{
width: 33.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-l-5{
width: 41.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-l-6{
width: 50%;
height: 100%;
float: left;
}
.container>.row>.col-l-7{
width: 58.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-l-8{
width: 66.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-l-9{
width: 75%;
height: 100%;
float: left;
}
.container>.row>.col-l-10{
width: 83.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-l-11{
width: 91.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-l-12{
width: 100%;
height: 100%;
float: left;
}
}


@media screen and (min-width: 900px){
.container{
width: 900px;
height: 300px;
border:1px solid #333;
box-sizing: border-box;
}
.container>.row>.col-s-1{
width: 8.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-s-2{
width: 16.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-s-3{
width: 25%;
height: 100%;
float: left;
}
.container>.row>.col-s-4{
width: 33.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-s-5{
width: 41.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-s-6{
width: 50%;
height: 100%;
float: left;
}
.container>.row>.col-s-7{
width: 58.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-s-8{
width: 66.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-s-9{
width: 75%;
height: 100%;
float: left;
}
.container>.row>.col-s-10{
width: 83.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-s-11{
width: 91.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-s-12{
width: 100%;
height: 100%;
float: left;
}
}


@media screen and (min-width: 1200px){
.container{
width: 1200px;
height: 300px;
border:1px solid #333;
box-sizing: border-box;
}
.container>.row>.col-m-1{
width: 8.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-m-2{
width: 16.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-m-3{
width: 25%;
height: 100%;
float: left;
}
.container>.row>.col-m-4{
width: 33.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-m-5{
width: 41.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-m-6{
width: 50%;
height: 100%;
float: left;
}
.container>.row>.col-m-7{
width: 58.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-m-8{
width: 66.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-m-9{
width: 75%;
height: 100%;
float: left;
}
.container>.row>.col-m-10{
width: 83.3333333%;
height: 100%;
float: left;
}
.container>.row>.col-m-11{
width: 91.6666666%;
height: 100%;
float: left;
}
.container>.row>.col-m-12{
width: 100%;
height: 100%;
float: left;
}
}


div>[class*=col]{
border:1px solid red;
box-sizing: border-box;
}
</style>
<body>
<div class="container">
<div class="row">
<div class="col-m-3 col-s-4 col-l-6"></div>
<div class="col-m-3 col-s-4 col-l-6"></div>
<div class="col-m-3 col-s-4"></div>
<div class="col-m-3"></div>
</div>
</div>
</body>
</html>

12栅格化布局

标签:scala   div   title   http   imu   view   red   html   flow   

原文地址:https://www.cnblogs.com/weigaojie/p/11198279.html

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