IE11 meta element Breaks SVG

前端 未结 7 1824
半阙折子戏
半阙折子戏 2020-12-03 02:38

I\'ve embedded an SVG files data directly into my html. It shows in Chrome and Firefox, but in IE11 it doesn\'t show at all. The pastebin link to the SVG is http://pastebin

7条回答
  •  天命终不由人
    2020-12-03 03:25

    I ran into this issue and resolved it by removing the width styling I had used on the SVG:

    .svg-div img {
        width: 200px; /* removed this */
        height: auto;
    }
    

提交回复
热议问题