我想在 svg 中写一个 logo,但令人惊讶地发现我无法重用<defs>...</defs>
. 我在 Chrome 上试过了。
请看示例:
test1.html 不起作用,没有绘制矩形。
<!DOCTTYPE html> <html> <body> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="480" height="360"> <defs> <rect id="helo" x="0" y="0" height="20" width="20" /> </defs> <use xlink:href="#helo" /> </svg> </body> </html>
但是 test2.svg 有效。
<?xml version="1.0"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="480" height="360"> <defs> <rect id="helo" x="0" y="0" height="20" width="20" /> </defs> <use xlink:href="#helo" /> </svg>
使 test1.html 工作需要什么?非常感谢:)