Created
August 4, 2012 19:26
-
-
Save valpackett/3259479 to your computer and use it in GitHub Desktop.
Four column layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div>1</div> | |
<div>2</div> | |
<div>3</div> | |
<div>4</div> | |
<div>5</div> | |
<div>6</div> | |
<div>7</div> | |
<div>8</div> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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