Here is an example of some HTML/CSS code:
.section {
width: 100%;
height: 200px;
overflow: hidden;
}
.section img {
max-width: 100%;
height: auto;
}
<div class="section">
<img src="http://www.example.com/image.jpeg" alt="image" />
</div>
How can I center the image vertically in its container?