Created
December 17, 2012 16:54
-
-
Save guioconnor/4319776 to your computer and use it in GitHub Desktop.
Two column, left hand sidebar layout.
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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> | |
<head> | |
<title>Fluid two column layout with left-sidebar </title> | |
<style type="text/css"> | |
#contentwrapper{ | |
float: left; | |
width: 100%; | |
} | |
#contentcolumn{ | |
margin-left: 200px; | |
} | |
#leftcolumn{ | |
float: left; | |
width: 200px; | |
margin-left: -100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="contentwrapper"> | |
<div id="contentcolumn"> | |
Loren Ipsum | |
</div> | |
</div> | |
<div id="leftcolumn"> | |
Loren Ipsum | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment