Skip to content

Instantly share code, notes, and snippets.

@citrusui
Forked from duncangraham/index.html
Created June 18, 2018 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save citrusui/03e49eaef8f90d5190feaab651a68522 to your computer and use it in GitHub Desktop.
Save citrusui/03e49eaef8f90d5190feaab651a68522 to your computer and use it in GitHub Desktop.
a svg grid of stunning beauty
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%">
<defs>
<pattern id="grid" width="11" height="11" patternUnits="userSpaceOnUse">
<rect fill="white" x="0" y="0" width="9" height="9"/>
<rect fill="aliceblue" x="10" y="0" width="1" height="10"/>
<rect fill="aliceblue" x="0" y="10" width="11" height="1"/>
</pattern>
</defs>
<rect fill="url(#grid)" x="0" y="0" width="100%" height="100%"/>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment