Skip to content

Instantly share code, notes, and snippets.

@duncangraham
Last active June 26, 2020 11:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save duncangraham/9598765 to your computer and use it in GitHub Desktop.
Save duncangraham/9598765 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