I try all kind of methods that said it will make background-size: cover; work in IE (version needed to cover IE8+), which…. - Added the meta for IE=edge and chrome=1 - Added all three "-mos-" into the class - Also, try putting everything into one line format (but this will not my result since I am building up a template for other, the background link need to be in-line.
What other thing did I miss??
.-bg-image-70 {
min-height: 70vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-ie-background-size: cover;
}
<div class="-bg-image-70" style="background-image: url(https://cdn.pixabay.com/photo/2015/04/19/08/33/flower-729512_960_720.jpg);" >
<div class="container" ><h1>Hello!</h1></div>
</div>