Solid gradients not really solid? Don't have crisp edges at color stops
In CSS, this seems to be the easiest way to create solid looking gradients where colors end and start abruptly at color stops. Example - background-image:linear-gradient(to bottom, gray 100px, white 0); /*Let the browser decide*/ OR background-image:linear-gradient(to bottom, gray 100px, white 100px); /*Explicitly specify.*/ What happens is that a gradient is generated but it doesn't really have crisp edges where the colors meet. My assumption was that the code would result in gray stopping at 100px and white starting right after it. But it turns out that it's still a bit blurry. I have put