
fixed-liquid-layout
By: a guest on
Jun 17th, 2011 | syntax:
HTML | size: 0.35 KB | hits: 64 | expires: Never
<html>
<style>
#left
{
position: absolute;
width: 100px;
height: 100%;
top: 0;
left: 0;
background: red;
float: left;
}
#right
{
position: absolute;
margin-left: 100px;
background: green;
height: 100%;
width: 100%;
top: 0;
}
</style>
<body>
<div id="left"> </div>
<div id="right"> </div>
</body>
</html>