I have an svg logo that is blurry on non-retina screens:
html:
<img src="/dist/images/logos/color-logo.svg" class="nav-color-logo">
css:
.nav-color-logo {
width: 123px;
height: auto;
position: relative;
left: 14px;
}
Could anything I'm doing with the css be affecting it? It's sized is not constrained at all by its containing box
Also, the intrinsic dimensions of the image are 166x53, so the 'width: 123px' declaration does seem to be causing the height to have a decimal value- is that a problem? If so, the weird thing is that it displays crisply on my local, it's only blurry when sent from the server
This post makes me wonder if it's positioning or sizing could be in play: svg not sharp, but blurry