Hi, does anyone know how to fix it in Google Chrome (Edge as well)? The container should keep image and figcaption visible. Seems it doesn’t work properly when the image is taller than the screen size. This is not the case described under this link Problem with height: 100vh. Help needed
section#post .img_container {
grid-area: img;
}
section#post .img_container .img_wrapper{
height: 100vh;
display: flex;
}
section#post .img_container .img_wrapper img{
height: 100%;
object-fit: cover;
}
section#post .gallery figcaption {
font-size: 1.3rem;
padding: calc(var(--margin_identation) / 2) 0;
margin: 0 var(--margin_identation) calc(var(--margin_identation) * 2) var(--margin_identation)
}
<div class="img_container">
<div class="img_wrapper">
<figure class="gallery">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/0f/Eiffel_Tower_Vertical.JPG"/>
<!-- <img src="https://3.img-dpreview.com/files/p/TS600x450~sample_galleries/1876772280/5822001978.jpg"/> -->
<figcaption>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut consequuntur inventore, at architecto maxime tenetur possimus, adipisci culpa sint nesciunt molestiae cum, magni a expedita modi quam atque! Libero repellendus, provident accusamus explicabo. Sit, doloremque nesciunt et aut quisquam, sint perferendis cumque qui repudiandae nobis adipisci atque quod nisi sapiente doloribus repellendus</figcaption>
</figure>
</div>
</div>