I need assistance with the code below:
.hero{
background:lightgrey;
padding: 50px 0px;
}
<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="hero">
<div class="container d-flex align-items-center">
<div class="row">
<div class="col-12">
<div class="text__wrap d-flex flex-column">
<h1>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h1>
</div>
</div>
</div>
</div>
</div>
Although the columns display correctly in Chrome and most other browsers, they do not span the .container
in IE11.
I've tried using the following CSS without success:
.text__wrap{
flex-basis: 100%
/* flex: 1
width: 100%; */
}
Can anyone help me identify where I am making a mistake?