Open scottjehl opened 7 years ago
If an SVG ever looks solid black in IE11 or older, it’s likely that it contains a <style> element and the rules aren’t applying when the svg is dynamically used...
<style>
A solution is to move the styles into attributes
Before:
After:
http://meta.stackoverflow.com/q/340293/248058
If an SVG ever looks solid black in IE11 or older, it’s likely that it contains a
<style>
element and the rules aren’t applying when the svg is dynamically used...A solution is to move the styles into attributes
Before:
After: