Created
February 27, 2012 04:18
-
-
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
This file contains 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
/* 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