Skip to content

Instantly share code, notes, and snippets.

@gruzzilkin
Created November 8, 2014 14:42
Show Gist options
  • Save gruzzilkin/3a14c895c8af1a08de6c to your computer and use it in GitHub Desktop.
Save gruzzilkin/3a14c895c8af1a08de6c to your computer and use it in GitHub Desktop.
A Pen by Nick Sadovnikov.
<section class="header">
<h1 class="title">Header</h1>
</section>
<section class="body">
<h1 class="title">Content</h1>
</section>
<section class="footer">
<h1 class="title">Footer</h1>
</section>
body {
background: #fff;
}
.header,
.body,
.footer {
padding: 10px;
margin: 10px auto;
width: 600px;
}
.header {
background: #f00;
}
.body {
background: #ff0;
}
.footer {
background: #f0f;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment