Created
October 5, 2018 18:11
-
-
Save AGoblinKing/aee30f7302a8d990880f22ccb6d7e384 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>SVG Pattern</title> | |
<style> | |
body, window { | |
position: absolute; | |
left: 0; | |
right: 0; | |
top: 0; | |
bottom: 0; | |
background-color: black; | |
padding: none; | |
margin: none; | |
} | |
</style> | |
</head> | |
<body> | |
<svg viewBox="0 0 100 100"> | |
<defs> | |
<pattern id="foo" width="0.1" height="0.1"> | |
<circle fill="white" r="10" /> | |
</pattern> | |
</defs>/ | |
<rect x="0" y="0" width="100" height="100" fill="url(#foo)"/> | |
</svg> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment