Does svg xmlns attribute value requires protocol? Can it be https or relative?

后端 未结 1 1578
慢半拍i
慢半拍i 2021-01-04 17:50

Can xmlns=\"http://www.w3.org/2

相关标签:
1条回答
  • 2021-01-04 18:09

    It's not really a URL, it's a namespace that simply happens to look like a URL. As such it must be written exactly as

    xmlns="http://www.w3.org/2000/svg"
    

    omitting the http or changing it to https will not work.

    The fact that the namespace contains http does not mean in any way that the SVG file will use the http protocol for any kind of communication. The w3c could have defined the SVG namespace as foo in which case we'd all be writing xmlns="foo" and you'd not even be asking such questions.

    0 讨论(0)
提交回复
热议问题