vigetlabs / blendid

A delicious blend of gulp tasks combined into a configurable asset pipeline and static site builder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xlink:href being deprecated in SVG

olaassem opened this issue · comments

commented

MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/xlink:href

This is old

<svg>
  <use xlink:href="#xyz" />
</svg>

This is new

<svg>
  <use href="#xyz" />
</svg>