I've created a checkerboard pattern with the following css code:
.testcheckerboard{
width: 200px;
height: 100px;
background-color: white;
background-image: linear-gradient(45deg, black 25%, transparent 25%, transparent 75%, black 75%), linear-gradient(45deg, black 25%, transparent 25%, transparent 75%, black 75%);
background-position: 0 0, 20px 20px;
background-size: 40px 40px;
}
The result is the checkerboard pattern that I wanted, but is also shown an unaesthetic diagonal white line!
The strangeness is that, in some cases, the problem disappears.
There is a way to remove this line? I think that is only an antialiasing bug, but i couldn't find a method to control, or remove, antialiasing...
I couldn't find any solutions on the Internet.
