【发布时间】:2018-06-16 00:54:07
【问题描述】:
我有一个带有 bootstrap 4 网格系统的页面,它在除 IE 11 之外的所有浏览器上都能正常呈现。我在 jsfiddle 上有这个 snippet,您可以在 IE 11 中查看它以查看图像在 d-flex 内被拉伸容器。我该如何解决这个问题?
<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>
【问题讨论】:
标签: html css flexbox bootstrap-4