My webpage utilizes the bootstrap 4 grid system and appears correctly on most browsers, except for IE 11. If you check out this snippet on jsfiddle in IE 11, you'll notice that the image gets stretched inside a d-flex container. How can I resolve this issue?
<div class="container-fluid">
<div class="row py-3 justify-content-center">
<div class="col-3 bg-primary">
This content is longer than image This content is longer than image This content is longer than image This content is longer than image This content is longer than image This content is longer than image
</div>
<div class="col-5 d-flex align-items-center">
<img class="img-fluid" src="https://www.w3schools.com/w3css/img_lights.jpg">
</div>
<div class="col-3 bg-primary">
This content is longer than image This content is longer than image This content is longer than image This content is longer than image This content is longer than image This content is longer than image
</div>
</div>
</div>