I'm trying to draw a svg image on a circle shape, it work on firefox but not on chrome and I don't understand why... Can someone help me with this please ?
Here is my code :
.flipper {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: absolute;
}
.cercle {
margin: 10px 10px;
background-color: #008D97;
width: 180px;
height: 180px;
border-radius: 50%;
}
.tete {
position: fixed;
z-index: 1;
}
<div class="flipper">
<div class="tete">
<svg id="Calque_3" data-name="Calque 3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.75 60.75">
<defs>
<style>.cls-1{fill:none;stroke:#fff;stroke-miterlimit:10;stroke-width:1.5px;}</style>
</defs>
<title>tete</title>
<path class="cls-1" d="M36,46.6V39.84h5.4V33.76h3.38l-3.51-6.33,0-.18c0-.11-.17-.53-.18-.63a12.26,12.26,0,0,0-12.3-11.77A12.43,12.43,0,0,0,16.48,27a13.84,13.84,0,0,0,2.35,8.19l.49.73a16.75,16.75,0,0,1,2.46,5.29l.07.3a26.52,26.52,0,0,1,.5,5.09"/>
</svg>
</div>
<div class="cercle"></div>
</div>