Flexbox with IE11
I'm having some issues with compatibility in IE11 and flexbox. My site is working correctly in Chrome, Firefox, Edge but not IE. I've researched Google and this forum and learned of "bugs" and issues with columns etc.. in IE but everything I've tried still isn't correcting the issue. I've pasted the code below. Thank you for the help.
<div class="container-fluid hero-band-contain d-flex flex-column">
<img src="images/hero_image.jpg" alt="" width="10048" height="4304" class="img-fluid"/>
<div class="hero-image-overlay">
<h1 class="sethshead">Southeast Texas Health System</h1>
<h2 class="leveraging">Leveraging partnership and participation among rural community Texas hospitals to deliver the highest quality care through active colaboration.</h2>
<a href="about.html" class="btn btn-primary btn-lg who-we-are-button">WHO WE ARE</a>
</div>
</div>
body {
height: 100%;
}
.hero-band-contain {
padding: 0px;
}
.hero-image-overlay {
position: absolute;
}
.sethshead {
color: #2E2E2E;
font-size: 63px;
font-family: 'Oswald', sans-serif;
margin-left: 10%;
margin-top: 9%;
}
.leveraging {
color: #2E2E2E;
font-size: 25px;
font-family: 'Raleway', sans-serif;
font-weight: lighter;
margin-top: 1%;
margin-left: 10%;
width: 46%;
}
.who-we-are-button {
font-family: 'Raleway', sans-serif;
font-size: 28px;
background-color: #7AAC3B;
border-color: #8BBB4E;
margin-top: 2%;
margin-left: 10%
}
