100%
拖拽SVG文件到这里
或点击上方"选择SVG文件"按钮
支持自动修复问题SVG文件
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> <rect x="10" y="10" width="100" height="100" fill="blue" /> <circle cx="150" cy="60" r="40" fill="red" /> </svg>带样式的SVG:
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
<style>
.my-shape { fill: green; stroke: black; stroke-width: 2; }
</style>
<rect x="50" y="50" width="100" height="100" class="my-shape" />
</svg>