Skip to content

Instantly share code, notes, and snippets.

@valpackett
Created August 4, 2012 19:26
Show Gist options
  • Save valpackett/3259479 to your computer and use it in GitHub Desktop.
Save valpackett/3259479 to your computer and use it in GitHub Desktop.
Four column layout
/**
* Four column layout
*/
body { padding: 0; margin: 0; }
div {
background: linear-gradient(#ea0, #c60);
color: white;
font: 7em Helvetica;
text-align: center;
line-height: 2em;
float: left;
width: 24%;
margin: 0 1.33% 1.33% 0;
}
div:nth-child(4n) { margin-right: 0; }
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
{"view":"split-vertical","fontsize":"90","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment