I am having an issue with my SVG used as a background image:
<div class="bubble"></div>
Here is the CSS I am using:
.bubble
{
background-image: url(https://beta.creasoft.cz/Images/bubble-small.svg);
background-repeat: no-repeat;
width: 48px;
height: 48px;
}
When viewing in IE 11 and zoomed in (at 105% or more), it appears distorted:
https://i.stack.imgur.com/1v5nB.jpg
However, it displays correctly in Chrome. Is there a solution to fix this issue?