Skip to content

Instantly share code, notes, and snippets.

@guioconnor
Created December 17, 2012 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guioconnor/4319776 to your computer and use it in GitHub Desktop.
Save guioconnor/4319776 to your computer and use it in GitHub Desktop.
Two column, left hand sidebar layout.
<!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