Skip to content

Instantly share code, notes, and snippets.

@hidayat365
Created May 13, 2012 16:25
Show Gist options
  • Save hidayat365/2689182 to your computer and use it in GitHub Desktop.
Save hidayat365/2689182 to your computer and use it in GitHub Desktop.
HTML Region using CSS
<style type="text/css">
.page {
width: 960px;
margin: 5 auto;
}
.header {
background-color: #F00;
}
.main-wrapper {
background-color: #fff;
}
.sidebar {
background-color: #00f;
width: 180px;
float: left;
}
.content {
background-color: #f0f;
width: 780px;
float: left;
}
.footer {
background-color: #0f0;
}
.clearfix {
clear: both;
}
</style>
<div class="page">
<div class="header">
&nbsp;
</div>
<div class="content-wrapper">
<div class="sidebar">&nbsp;</div>
<div class="content">&nbsp;</div>
<div class="clearfix"></div>
</div>
<div class="footer">
&nbsp;
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment