Skip to content

Instantly share code, notes, and snippets.

@rizalibnu
Created July 13, 2020 17:24
Show Gist options
  • Save rizalibnu/a23f885cf4b948488cda3b7686ab8a48 to your computer and use it in GitHub Desktop.
Save rizalibnu/a23f885cf4b948488cda3b7686ab8a48 to your computer and use it in GitHub Desktop.
CSS Checkerboard Background
.checkerboard-background {
background-image: linear-gradient(45deg, rgba(192, 192, 192, 0.75) 25%, transparent 25%), linear-gradient(-45deg, rgba(192, 192, 192, 0.75) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(192, 192, 192, 0.75) 75%), linear-gradient(-45deg, transparent 75%, rgba(192, 192, 192, 0.75) 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment