Created
July 13, 2020 17:24
-
-
Save rizalibnu/a23f885cf4b948488cda3b7686ab8a48 to your computer and use it in GitHub Desktop.
CSS Checkerboard Background
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
| .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