Having a SVG file in a img link display on IE10 -
i have basic html file. in file have image tag references svg file. when view file in ie10 page remains blank rather showing expected vector image. svg file made inkscape.
<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> <form id="form1" runat="server"> <img src="images/mylogo.svg" width="400"/> </form> </body> </html>
what best way troubleshoot problem?
one reason because in ie9+, chrome , safari won’t apply stylesheet rules svg if they’re defined in separate css file.
Comments
Post a Comment