I got the following solution for diagonal scanlines from an answer to my previous question:
html {
height:100%;
background:
radial-gradient(#000 0.5px,transparent 0.5px) 0 0 /3px 3px,
radial-gradient(#000 0.5px,transparent 0.5px) 1px 1px /3px 3px,
radial-gradient(#000 0.5px,transparent 0.5px) 2px 2px /3px 3px,
url(https://i.picsum.photos/id/102/800/800.jpg) center/cover;
}
The solution works perfectly to reproduce the desired effect in Chrome and Firefox, but doesn't make any difference in Edge. This doesn't seem to make any sense as all versions of Edge support gradients.
Why is Edge not reproducing these gradients?