Html – SVG circle, what is the radius percentage of?
I have the following code: .container{ width: 100px; height: 200px; background-color: red; resize: both; /* Just to make it... */ overflow: hidden; /* ...resizable for testing. */ } <div class="container"> <svg width="100%" height="100%"> <circle cx="50%" cy="50%" r="25%" fill="black"></circle> </svg> </div>…