SVG表示サンプル

width, heightなし

width, heightあり

preserveAspectRatio="none"あり


<svg id="ball_ai" width="100" height="100" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
  <title>ball_ai</title>
  <circle cx="50" cy="50" r="50" fill="#ff810a"/>
</svg>


<svg id="ball_ai" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
  <title>ball_ai</title>
  <circle cx="50" cy="50" r="50" fill="#ff810a"/>
</svg>