-
-
Save citrusui/03e49eaef8f90d5190feaab651a68522 to your computer and use it in GitHub Desktop.
a svg grid of stunning beauty
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
<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