-->

Flexslider is not working in IE

2019-09-17 00:01发布

问题:

I am trying to implement the basic flexslider on our website. It works well with chrome, Firefox and safari. But in all versions of IE, it just blows out the entire width and height of the page. Here is the link. Please advise

回答1:

I tried this one it work for me.

Add following line in the header tags to force IE to render in the latest document mode.

<meta http-equiv="X-UA-Compatible" content="IE=edge" />


回答2:

Had similar problem in ie9 - solved by setting fixed width for div, containing slider in CSS.

.metaslider { width: 720px; }

Hope this helps.