Skip to content

Instantly share code, notes, and snippets.

@sandeepsuvit
Last active September 11, 2018 17:07
Show Gist options
  • Save sandeepsuvit/66d3cc6c1d7d5617f30ed6001586414f to your computer and use it in GitHub Desktop.
Save sandeepsuvit/66d3cc6c1d7d5617f30ed6001586414f to your computer and use it in GitHub Desktop.
Fit image inside a div using css flex properties
<div class="img-container">
<img class="img-to-fit" src="https://images.pexels.com/photos/8633/nature-tree-green-pine.jpg" />
</div>
.img-container {
width: 150px;
height: 150px;
border: 2px solid red;
justify-content: center;
display: flex;
flex-direction: row;
overflow: hidden;
.img-to-fit {
flex: 1;
height: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment