Basically the gist is in the subject.
When I create two identical divs with fixed height (2px), and change the zoom to 75% or 125%, they "look" differently for some reason, can someone please explain what is going on here? And how do I fix this?
.gradient-slider-line {
background: linear-gradient(to right, red , blue);
height: 2px;
}
<div>
<div class="gradient-slider-line"></div>
</div>
<br/>
<div>
<div class="gradient-slider-line"></div>
</div>
Result:

