Created
May 22, 2012 14:53
-
-
Save ramsesoriginal/2769559 to your computer and use it in GitHub Desktop.
Two columns
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
/* | |
Two columns | |
*/ | |
html, body, .wrapper { | |
margin:0; | |
border:0; | |
outline:0; | |
} | |
.column { | |
display:inline-block; | |
margin:0; | |
padding:0; | |
vertical-align:top; | |
} | |
#column1 { | |
width: 30%; | |
background-color:teal; | |
} | |
#column2{ | |
width: 70%; | |
background-color:coral; | |
} | |
.wrapper{ | |
position: relative; | |
background-color: black; | |
padding-bottom: 200px; | |
} | |
.footer { | |
position: absolute; | |
bottom: 50px; | |
background-color: silver; | |
} | |
#column1 .footer { | |
right: 70%; | |
} | |
#column2 .footer { | |
left: 30%; | |
} |
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
<div class="wrapper"><div id="column1" class="column"> | |
<div class="content"> | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin nisl purus, lobortis et adipiscing non, vestibulum et tortor. Praesent aliquam placerat enim sit amet blandit. In ipsum dui, accumsan at hendrerit nec, tempus in augue. Etiam molestie, orci a feugiat tempus, nunc quam posuere libero, et ultrices libero sem porta arcu. Donec varius, massa at feugiat accumsan, mi lacus aliquam arcu, id faucibus arcu felis et sapien. Praesent sit amet tortor nibh. Nam mollis, ante quis iaculis fringilla, ante sapien dignissim ligula, in dignissim urna nisl ut ante. Mauris eget diam justo, nec tempor justo. Donec vel eros eget risus rhoncus dapibus. Nullam at felis faucibus orci molestie feugiat sit amet ut augue. Vestibulum at tellus tortor, non tempus quam. Phasellus adipiscing ante a purus congue ultrices in non justo. Ut ullamcorper porttitor quam, sit amet tincidunt mauris hendrerit at. | |
</div> | |
<div class="footer"> | |
Donec facilisis accumsan nisl | |
</div> | |
</div><div id="column2" class="column"> | |
<div class="content"> | |
Aenean pharetra sagittis ipsum, vitae pulvinar nunc aliquet ut. Fusce sit amet elit dui, a vulputate risus. Maecenas in laoreet tortor. | |
</div> | |
<div class="footer"> | |
Pellentesque malesuada ligula eget justo | |
</div> | |
</div> | |
</div> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment