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

Flexbox Gap Polyfill #80

Closed coliff closed 3 years ago

coliff commented 3 years ago

The .gap CSS classes don't work in IE11 due to lack of support for Flexbox gap, but it can be polyfilled with CSS with something like:

.gap-3 > * {
  margin-bottom: 1rem;
}

.gap-3 > *:last-child {
  margin-bottom: 0;
}