<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <svg>
    <defs>
      <!-- 定义一个可复用的圆形 -->
      <circle id="myCircle" cx="80" cy="30" r="100" fill="blue" />
    </defs>
  </svg>
  
  <svg width="500" height="500">
    <!-- 引用上面定义的圆形 -->
    <use xlink:href="#myCircle" x="100" y="100" />
  </svg>
</html>

svg标签如何搭配use标签使用_html