<div class="wrapper">
<div class="header"></div>
<div class="content">
<img src="https://w.forfun.com/fetch/71/71f0c755f4b257fb9987c25743d16388.jpeg" alt="">
</div>
<div class="footer"></div>
</div>
body {
margin: 0;
}
.wrapper {
height: 100vh;
display: grid;
grid-template-rows: 50px 1fr 50px;
}
.header {
background: red;
}
.content {
background: black;
position: relative;
}
.content img {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
object-fit: cover;
}
.footer {
background: green;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.