我希望能为11个html div制作一个纯粹的响应式css网格。
<div class="dashboard page-container">w100%, h100%
<div class="box1">w20%, h25%</div>
<div class="box2">w20%, h25%</div>
<div class="box3">w20%, h25%</div>
<div class="box4">w20%, h25%</div>
<div class="box5">w35%, h30%</div>
<div class="box6">w30%, h65%</div>
<div class="box7">w15%, h90%</div>
<div class="box8">w35%, h35%</div>
<div class="box9">w65%, h15%</div>
<div class="box10">w65%, h20%</div>
<div class="box11">w15%, h10%</div>
</div><!--/dashboard-->
在容器宽度方面做出响应:100%和高度100%,
..每个框占页面容器的百分比。
一直在努力,但还没有让花车正常工作..感谢您对此的任何帮助
答案 0 :(得分:5)
此解决方案使用浮动。
<强> FIDDLE 强>
我必须交换框的顺序,并将2个容器添加到原始HTML标记中。
HTML:
<div class="dashboard page-container">
<div class="col1">
<div class="box1">w20%, h25%</div>
<div class="box2">w20%, h25%</div>
<div class="box3">w20%, h25%</div>
<div class="box4">w20%, h25%</div>
</div>
<div class="col2">
<div class="box6">w30%, h65%</div>
<div class="box5">w35%, h30%</div>
<div class="box8">w35%, h35%</div>
<div class="box9">w65%, h15%</div>
<div class="box10">w65%, h20%</div>
</div>
<div class="box7">w15%, h90%</div>
<div class="box11">w15%, h10%</div>
</div><!--/dashboard-->
CSS:
html, body, .dashboard {
width:100%;
height:100%;
margin:0;
}
.col1, .col2, .box7, .box11 {
float:left;
}
.col1 {
width:20%;
height:100%;
}
.col1 > div {
width:100%;
height:25%;
}
.col2 {
width: 65%;
height:100%;
}
.box6 {
float:right;
width: 47.5%;
height:65%;
}
.box5, .box8 {
width:52.5%;
}
.box5 {
height:30%;
}
.box8 {
height:35%;
}
.box9 {
height:15%;
}
.box10 {
height:20%;
}
.box7, .box11 {
width:15%;
}
.box7 {
height:90%;
}
.box11 {
height:10%;
}
/* following just to see what we are doing :) */
div {
border:2px solid red;
box-sizing:border-box;
}