Hey guys, need some help with a coding issue I'm having:
.content__wrapper {
min-height: 325px;
}
.content__img {
background-size: contain;
background-position: left;
background-repeat: no-repeat;
}
.tab__content {
margin-left: 30%;
width: 50%;
margin: 0 auto;
margin-top: 20px;
z-index: 2;
}
blockquote {
color: red;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="content__wrapper d-flex flex-row justify-content-center">
<div class="content__img" style="background-image:url(https://placeimg.com/360/360/any);">
<div class="tab__content ">
<div class="content__content">
<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </blockquote>
</div>
</div>
</div>
</div>
The issue I'm having is that in Chrome and Firefox the image loads correctly, but in IE11 it appears very small and the .tab__content
width is ignored, causing a horizontal scrollbar to appear.
Anyone have any insights on why this might be happening?