What versions of IE are supported by the download?

From bootstrap : In particular, we support the latest versions of the following browsers and platforms. On Windows, we support Internet Explorer 8-11. More detailed support information is provided below.

But I tested my site in almost all of the latest browsers that displayed subtle settings. But when I tested it in Internet Explorer, it shows as if it is a mobile view (since we use col-xs- * :: all content is displayed as this view).

  • In IE11, this is normal.

  • In IE10, this is normal.

  • In IE9 - display as if it were a mobile view

  • In IE8 - display is redundant

enter image description here

So, as said, does bootstrap really support IE8 and IE9?


I am using bootstrap 3.1.1 and testing my site on windows.

+1
source share
1 answer

Supported versions are IE 8 and later. To prevent IE from switching to compatibility mode, the following meta tag is required, which emulates IE7. (Most likely why your site has problems with IE9.)

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

Documentation: http://getbootstrap.com/getting-started/#support-ie8-ie9


IE8 does not support the following: border-radius , box-shadow , transform , transition and placeholder .

IE9 does not support transform and transition .

+5
source

Source: https://habr.com/ru/post/974995/


All Articles