I realize this question has been asked a lot
but my question is different because I have the desired effect working on all browsers except IE11.
I'm aware of the flex auto margin bug, but my layout avoids using those so I don't believe that's the problem.
This is the layout I want to, and do achieve in modern browsers.
This works in Edge, Firefox, and Chrome. But in IE11, this is the result.
Here is the HTML
<div class="container pt-5 pb-5">
<div class="quote-container d-flex flex-column justify-content-center">
<p class="bold-weight extra-large-heading italic text-center">
<i class="fas fa-quote-left quotes mr-2" aria-hidden="true"></i>
Facts are meaningless. You could use facts to prove anything that's even remotely true.
<i class="fas fa-quote-right quotes ml-2" aria-hidden="true"></i>
</p>
<p class="text-muted text-center">– Homer Simpson</p>
</div>
</div>
And here is my CSS although very little of it has to do with the layout. The salmon color is only there to make seeing the container easier.
.quote-container{
min-height:600px;
background:salmon;
}
.quotes {
color:
#FFA300;
}
/*Generic Styles*/
.extra-large-heading {
font-size: 2rem;
}
.italic{
font-style:italic;
}
.bold-weight {
font-weight: 700;
}
I have created a fiddle that recreates this issue. https://jsfiddle.net/1wztmvo5/1/
If you want to see the issue in IE11, you'll have to use this embed link. https://jsfiddle.net/1wztmvo5/1/embedded/result,css,html,js
Any help would be really appreciated. I'm pulling my hair out over this one.