SVG Absolute Pathing for `xlink:href` Attribute Not Working
问题 So I have a single SVG file that holds a collection of different paths: <!-- icons.svg --> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <path id="foo" .../> <path id="bar" .../> ... </svg> and within my webpages, I use these SVG icons: <!-- index.html --> <svg viewBox="0 0 256 256"> <use xlink:href="icons.svg#foo"> </svg> and this works just fine and exactly how I intend -- we select the SVG with the id foo from the icons.svg file. Now, if I try to give