Skip to content

Instantly share code, notes, and snippets.

@caycefischer
Created February 27, 2012 04:18
Show Gist options
  • Save caycefischer/1921343 to your computer and use it in GitHub Desktop.
Save caycefischer/1921343 to your computer and use it in GitHub Desktop.
generate a custom grid overlay on any element with linear-gradient and :before
/* really can't remember where I saw this, sorry someone out there! :( */
.grid:before {
background-size: 20px 20px;
position: absolute;
left: 0; top: 0; right: 0; bottom: 0;
content: '';
background:
-webkit-linear-gradient(left, #5FB7ED 1px, transparent 1px),
-webkit-linear-gradient(#5FB7ED 1px, transparent 1px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment