I have the following HTML code containing an element for presenting a SVG:
<div class="item">
<div id="item_sla">
<image title="imagetitle" src="SVGImage.svg"/>
</div>
and the following CSS:
.item {
height: 95.5px;
width: 100%;
margin-left:0;
background-color: #ffffff;
}
#item_sla {
width: 20px;
height: 20px;
object-fit: center;
margin-left: 10%;
margin-top: 23px;
float: left;
}
However, the SVG image is unfortunately blurry i.e. has cropped corners. I've read so far the solution described here, but unfortunately I cannot get it right.
Any hint onto why this happens?