Answers for "chrome svg not showing"

1

svg img tag not showing

in the svg file change

xlink:href="data:img/png;base64,

to

xlink:href="data:image/png;base64,
Posted by: Guest on August-06-2020
1

img svg not loading

<!-- add the xlmns attribute to the svg element -->
<svg viewBox="0 0 24 24"><path d="..."/></svg>

<!-- after -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="..."/></svg>
Posted by: Guest on December-02-2020
0

svg not rendering in chrome anymore

<object data="/images/yourlogo.svg" type="image/svg+xml" width="100" height="100" class="mylogo"></object>
Posted by: Guest on December-18-2020
0

svgs not showing up in google chrome

xlink:href="data:image/png;base64,
Posted by: Guest on August-26-2021

Browse Popular Code Answers by Language