Created
December 26, 2017 21:13
-
-
Save AFlorencia/742584521ba093593bd3908ca7df2325 to your computer and use it in GitHub Desktop.
Zebra stripes
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
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/repeating-linear-gradient --> | |
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
body { | |
width: 100vw; | |
height: 100vh; | |
}body { | |
background-color:red; | |
background-image: repeating-linear-gradient(-45deg, | |
transparent, | |
transparent 10px, | |
#fff 10px, | |
#fff 20px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment