Forum Moderators: not2easy
CSS:
* {padding: 0; margin: 0;
}
html, body {width: 100%; height: 100%; background: #000;text-align: center; /* to centre IE */
}
#wrapper {position: relative; width: 780px; height: 100%; margin: 0 auto; /* to centre compliant browsers */ text-align: left; /* to reset text alignment to default */
}
#header {position: absolute; left: 0; top:0; width: 80%; height: 15%; background: #f0f;
}
#logo {position: absolute; right: 0; top: 0; width: 20%; height: 20%;
background: #0f0;
}
#content {position: absolute; left: 0; top: 20%; width: 80%; height: 80%; background: #0ff;
}
#nav-top {position: absolute; left: 0; top: 15%; height: 5%; width: 80%; background: #ff0;
}
#nav-side {position: absolute; width: 20%; height: 80%; top: 20%; left: 80%; background: #ff0;
}
HTML:
<div id="wrapper">
<div id="content">Content</div>
<div id="header">Masthead</div>
<div id="logo">Logo</div>
<div id="nav-top">Top Navigation Links</div>
<div id="nav-side">Side Navigation</div>
</div>