3 circles

​​💾 https://replit.com/@pegasusroe/svg-3-circles

<svg viewBox="0 0 400 200" xmlns="http://www.w3.org/2000/svg">
    <title>3 circles</title>
    <circle cx="100" cy="100" r="25" fill="red"></circle>
    <circle cx="200" cy="100" r="25" fill="green"></circle>
    <circle cx="300" cy="100" r="25" fill="blue"></circle>
</svg>
  • 使用獨立的 .svg 檔時,好像一定要註明: xmlns="http://www.w3.org/2000/svg" 否則 GitBook 似乎無法順利載入 SVG 圖檔。

  • CSS 的設定似乎對獨立的 SVG 檔無用

Last updated