Responsive image
example of simple fit image to parent
HTML
<div class="image">
<img src="https://assets.vogue.com/photos/5e237ac14de31600093b3aaf/master/pass/_ALE0720.jpg" />
</div>
CSS
.image {
position: relative;
height: 100vh;
overflow: hidden;
}
.image img {
position: absolute;
min-height: 100%;
min-width: 100%;
}