Skip to content

Instantly share code, notes, and snippets.

@AFlorencia
Created December 26, 2017 21:13
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 AFlorencia/742584521ba093593bd3908ca7df2325 to your computer and use it in GitHub Desktop.
Save AFlorencia/742584521ba093593bd3908ca7df2325 to your computer and use it in GitHub Desktop.
Zebra stripes
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/repeating-linear-gradient -->
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