Why is the text in the button displaying at the top instead of the center when using internet explorer?
button {
height: 100px;
}
<div class="container">
<button class="w-100 f-default-f btn btn-primary d-flex justify-content-between px-3">
<div>Text</div>
<div>icon</div>
</button>
</div>
I included a codepen link with Boostrap 4 alpha to demonstrate:
https://codepen.io/anon/pen/PaqLNm
The button behaves as expected in Mozilla Firefox and Chrome, but not in Microsoft Edge or Internet Explorer.