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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -