HTML5 Svg Tag And Alt Attribute
Not an expert in HTML and checking the correct behavior of an HTML parser (looking for correct behavior according to html5 not good or expect (we can handle that later)). In the ne
Solution 1:
SVG doesn't have an alt attribute, it uses a <desc>
child tag instead.
<svg width="120" height="35">
<desc>Stuff</desc>
{{ STUFF }}
</svg>
Post a Comment for "HTML5 Svg Tag And Alt Attribute"