dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
44 lines (37 loc) • 458 B
CSS
.main {
float: left;
width: 100%;
height: 100%
}
.mainCenter {
left: 251px ;
}
.center {
float: left;
height: 100%
}
.left {
float: left;
width:250px;
background-color: #C5CCD3;
z-index:100;
height: 100%
}
@media screen and (max-width: 560px) {
.center {
float: left;
width: 100%;
}
.mainCenter {
left: 0 ;
}
.left {
display: none;
float: left;
width:0;
}
}
html,body {
width: 100%;
height: 100%;
}