coliff / bootstrap-ie11

Internet Explorer 11 compatibility solution for Bootstrap 5
https://coliff.github.io/bootstrap-ie11/
MIT License
95 stars 15 forks source link

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

Closed coliff closed 3 years ago

coliff commented 3 years ago

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