Bootstrap 4 IE 11 does not work

后端 未结 5 1238
孤独总比滥情好
孤独总比滥情好 2020-12-16 12:35

so I have the problem, that my whole website does not work in IE 11. I don\'t get why because officially IE 11 should be supported by bootstrap 4... Website: www.ergotherapi

相关标签:
5条回答
  • 2020-12-16 13:08

    I had a display issue using IE11 when using the class .card-deck I fixed this by adding

    .card-deck {
        width: 100% !important;
    }
    
    0 讨论(0)
  • 2020-12-16 13:08

    align-self-center class helped me fix the issue in ie11

    0 讨论(0)
  • 2020-12-16 13:09

    In IE, the height and width need to be set explicitly or it breaks.

    So the width: auto might be causing a problem. auto gives me a lot of problems. Maybe give that a try

    0 讨论(0)
  • 2020-12-16 13:14

    Posting just in case this could help someone else. I ran into the same issue where everything ran just fine in Chrome but in IE11 it acted like it could not see any CSS. I came across this post but it didn't help. After more searching I found a suggestion to add the following in the HEAD tag and it worked. Figured I would post here since this is one of the first threads that comes up in a Google search.

    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    
    0 讨论(0)
  • 2020-12-16 13:21

    I had the same problem. You have to close all the meta and link tags in your head with a />.

    0 讨论(0)
提交回复
热议问题