Fix homepage bootstrap-stack.svg display on IE
So, apparently, this is broken for quite some time now :)
It seems it first broke on https://github.com/twbs/bootstrap/commit/cb2b21bb88604dee22bd4d0f2804d8366b2d65e3
The issue is present on the current live site, v4-dev and master branches. For the master branch it seems removing align-items-start
from the parent row fixes the issue (plus it seems the class is redundant anyway).
For v4-dev, so far, I have found 2 ways to solve this:
- specify the height in the CSS for >=768px, and width set to auto
- remove the
img-fluid
class from the SVG
This is how the live site https://getbootstrap.com/ looks like right now:
/CC @MartijnCuppens @ysds for thoughts. I'll make a PR for master to remove the align-items-start
class anyway.