Html – Rotating an SVG Circle 90 degrees with a CSS transform?
Without the transform (style="transform: rotate(90deg)") this SVG element renders fine. <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" > <circle cx="100" cy="100" r="90" stroke="red" stroke-width="20" stroke-dasharray="565.4866776461628" stroke-dashoffset="441.079608564007" stroke-linecap="round" ></circle> </svg> However if I put the transform in the element…