Answer the question
In order to leave comments, you need to log in
Is there a workflow to replace the bootstrap 4 my-auto class in ie10-11?
Hello! I noticed that the my-auto bootstrap 4 vertical centering class does not work in ie10 and ie11, although everything else works. The condition is also not fulfilled. Is there a solution?
<!--[if lte IE 11]>
.my-auto {
margin-top:100px !important;
}
<![endif]-->
Answer the question
In order to leave comments, you need to log in
Pavel thanks! This option worked. The article helped
/* Internet Explorer 10+, Microsoft Edge Browser */
_:-ms-lang(x), .my-auto {
margin-top:100px !important;
}
Google css hack ie 10
One of the options:
@supports (-ms-ime-align:auto) {
.my-auto {
margin-top:100px !important;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question