coliff / bootstrap-ie11

Internet Explorer 11 compatibility solution for Bootstrap 5

Home Page:https://coliff.github.io/bootstrap-ie11/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix for `.justify-content-evenly` flex utility

coliff opened this issue · comments

This doesn't work in IE11

.justify-content-evenly {
  justify-content: space-evenly !important;
}

image

should be fixed with a similar flex property such as:

.justify-content-evenly {
  justify-content: space-around !important;
}

Then it'll appear like this:

image