I want to create a checkerboard pattern using gradients. I\'ve found an example and modified it to my needs, however it only works with -moz prefix. When I remo
-moz
It's 2020 and this can now be created with a single CSS gradient (if you don't need to support IE/ pre-Chromium Edge).
html { background: repeating-conic-gradient(#808080 0% 25%, transparent 0% 50%) 50% / 20px 20px }
A detailed explanation for how this works.