Created
February 27, 2013 11:42
-
-
Save lakshman108/5047330 to your computer and use it in GitHub Desktop.
A CodePen by Liam.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div id="header">Header</div> | |
<div class="divider">divider</div> | |
<div id="container"> | |
<div id="topribbon">Top Ribbon</div> | |
<div id="mcont">Main Content</div> | |
<div id="rcont">Right Content</div> | |
<div class="divider">divider</div> | |
<div id="contfooter">Container Footer</div> | |
</div> | |
<div id="footer">Footer</div> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
} | |
#header { | |
width: 100%; | |
background: black; | |
height: 50px; | |
color: white; | |
} | |
.divider { | |
width: 100%; | |
height: 30px; | |
clear: both; | |
} | |
#container { | |
width: 960px; | |
margin: auto; | |
} | |
#topribbon { | |
width: 100%; | |
background: grey; | |
height: 30px; | |
} | |
#mcont { | |
width: 700px; | |
height: 100px; | |
float: left; | |
background: silver; | |
} | |
#rcont { | |
width: 240px; | |
float: right; | |
background: Aquamarine; | |
} | |
#contfooter { | |
background: LightSkyBlue; | |
height: 40px; | |
} | |
#footer { | |
position: relative; | |
width: 100%; | |
height: 100px; | |
bottom: 0px; | |
background: black; | |
float: both; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment