I'm trying to create a striped background for a page. Ideally the stripes need to have solid edges, however when I attempt this the edges are all slightly blurry. Am I missing something here?
.timeline {
width: 100%;
height: 1800px;
background-size: 1800px 1800px;
background-image: linear-gradient(0deg, #dbe4ea 25%, #f6f6f6 25%, #f6f6f6 50%, #dbe4ea 50%, #dbe4ea 75%, #f6f6f6 75%, #f6f6f6 100%);
}
<div class="timeline"></div>