Im using this svg tag in my html file. It works perfectly in Chrome, but in safari the icon doesn't appear
<svg width="25" height="23" viewBox="0 0 25 23">
<use href="./icons.svg#helemet"></use>
</svg>
any know why?
Im using this svg tag in my html file. It works perfectly in Chrome, but in safari the icon doesn't appear
<svg width="25" height="23" viewBox="0 0 25 23">
<use href="./icons.svg#helemet"></use>
</svg>
any know why?
Here is an update from the future 2019.
Just add xlink:
<svg role="img">
<use xlink:href="/path/to/svg#id"></use>
</svg>
Works with IOS 12