Skip to content

Instantly share code, notes, and snippets.

@exarcheia-web
Created November 18, 2013 22:45
Show Gist options
  • Save exarcheia-web/7536746 to your computer and use it in GitHub Desktop.
Save exarcheia-web/7536746 to your computer and use it in GitHub Desktop.
Grid System - Demo
/* Grid System - Demo */
* {
box-sizing: border-box;
}
.site-header {
background: hotpink;
padding: 20px;
}
.site-container {
background: rgba(0,0,0,0.2);
width: 80%;
margin: 60px auto 0;
}
.g-mother:after {
content: "";
display: table;
clear: both;
}
[class*="g-c"] {
float: left;
}
[class*="g-c"]:last-of-type {
border: none;
}
.box {
height: 200px;
background: rgba(255,0,0,0.3);
margin-bottom: 1px;
border-right: 1px solid white;
}
.g-c20 {
width: 20%;
}
.g-c50 {
width: 50%;
}
<div class="site-container">
<header class="site-header">
<a href="#" class="site-logo">My logo</a>
</header>
<section class="g-mother">
<div class="box g-c20 g-mother">
<div class="box g-c50"></div>
<div class="box g-c50"></div>
</div>
<div class="box g-c20"></div>
<div class="box g-c20"></div>
<div class="box g-c20"></div>
<div class="box g-c20"></div>
</section>
</div>
// alert('Hello world!');
{"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