Public code

Attach style to svg file by Tag

0
0
Screenshot!
Copy Code!
//HTML <style type="text/css" rel="stylesheet" href="./style.css"></style> <div class="wrapper"> <svg> <use xlink:href="SVG PATH + #hoge"></use> </svg> </div> //SVG <svg> <symbol id="hoge"> <path class="fuga" ..........></path> </symbol> </svg> //style.css .wrapper{ color: red; } .fuga{ fill: currentColor; }
Back to Home