svg - ellipse

by jeffxiao

HTML

<svg>
  <rect x="0" y="0" width="100" height="100"></rect>
  <circle cx="200" cy="0" r="100"></circle>
  <ellipse cx="400" cy="0" rx="100" ry="50" fill="yellow"/>
</svg>

CSS

/* https://stackoverflow.com/a/50765579/3380951 */
svg {
  width: 100%;
  height: 100%;
}