I Tried to fit image to a box using 'object-fit:cover' style. It is working properly other browsers. but it is not working properly on IE browser(Internet Explorer page looks different). How can I fix the issue. Below is my code.
<img class="fit-box" src="https://i.pinimg.com/originals/12/64/da/1264da4a3f18207dc22592102abae40d.jpg">
.fit-box{
width:100%;
height:229px;
object-fit:cover;
}