Skip to content

Instantly share code, notes, and snippets.

@sarvar
Created October 17, 2019 06:38
Show Gist options
  • Save sarvar/c70b26930dd87165e787982a67b01ebd to your computer and use it in GitHub Desktop.
Save sarvar/c70b26930dd87165e787982a67b01ebd to your computer and use it in GitHub Desktop.
Equal img height
<div class="section-item__photo">
<img .../ >
</div>
.section-item__photo {
max-width: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.section-item__photo img {
-o-object-fit: cover;
object-fit: cover;
width: 100%;
height: 325px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment