I'm trying to make a Windows Explorer-like in CSS and for now here is my code.
The #explorer is not positionned correctly. Here is a little explanation of what i'm trying to make.
sys_top on top, always visible
info_Bar at the bottom of the page, always visible
navbar at the left, width of 20%
explorer at the right, 80% width
HTML:
<div id="sys_top"></div>
<div id="navbar"></div>
<div id="explorer"></div>
<div id="infobar"></div>
CSS:
html, body {
padding:0;
margin:0;
height:100%;
cursor: default;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
}
#sys_top {
background: url(../menu_files/bg.png) repeat-x;
width:100%;
top:0;
position: fixed;
}
#navbar {
width: 20%;
height: 100%;
float:left;
left: 0;
top: 30px;
position: fixed;
border-right: #CCCCCC solid 1px;
}
#explorer {
width: 500px;
height:300px;
float:right;
top: 30px;
overflow:auto;
}
#infobar {
height: 120px;
width: 100%;
bottom:0;
position: fixed;
display:block;
margin-top: 5px;
margin-left: 5px;
}