IE11 meta element Breaks SVG

前端 未结 7 1823
半阙折子戏
半阙折子戏 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条回答
  •  萌比男神i
    2020-12-03 03:26

    Check if the Browser is IE -

      $ua = htmlentities($_SERVER['HTTP_USER_AGENT'], ENT_QUOTES, 'UTF-8');
      if (preg_match('~MSIE|Internet Explorer~i', $ua) || (strpos($ua, 'Trident/7.0') !== false && strpos($ua, 'rv:11.0') !== false)) {
        // do stuff for IE Here
      }
    

提交回复
热议问题