SOURCE

console 命令行工具 X clear

                    
>
console
<svg>
    <!-- defs表示定义SVG的元素重复使用 -->
    <defs>
        <!-- 定义一个唯一名字,引起调用 -->
        <g id="z">
        <rect width="100" height="100" stroke="blue"  fill="red" ></rest>
    </defs>
    <!-- use通过xlink:href=""引用g里面的元素  -->
    <use xlink:href="#z"x="50"y="50" >

</svg>