Ajax Loader
×

lsblsblsblsb

HTML
<div class="wrapper">
1
<div class="wrapper">
2
<div class="header">шапка</div>
3
<div class="menu">меню</div>
4
<div class="lsb">
5
<div class="lsb1">сайдбар1</div>
6
<div class="lsb2">сайдбар2</div>
7
 </div>
8
<div class="content">контент</div>
9
<div class="footer">футер</div>
10
</div>
 
CSS
.wrapper {display: flex; flex-flow: column nowrap; width:500px; border:1px solid black;}
1
.wrapper {display: flex; flex-flow: column nowrap; width:500px; border:1px solid black;}
2
.lsb1 {width:100px; height:150px; background:palegreen; order:1;}
3
.lsb2 {width:100px; height:150px; background:khaki; order:1;}
4
.header {width:100%; height:50px; background:peachpuff;}
5
.menu {width:100%; height:30px; background:pink;}
6
.footer {width:100%; height:30px; background:green;}
7
.lsb { background:whitesmoke; order:1;  
8
  display: flex; flex-flow: row nowrap; justify-content:space-around;} 
9
.content { width:100%; height:100px; background:lightcoral;} 
10
 
 

lsblsblsblsb

CSSDeck G+