Skip to content

Instantly share code, notes, and snippets.

@AlexBrasileiro
Created December 11, 2018 04:50
Show Gist options
  • Save AlexBrasileiro/88b9ef3cccafcfd8b9868a9fad5ee563 to your computer and use it in GitHub Desktop.
Save AlexBrasileiro/88b9ef3cccafcfd8b9868a9fad5ee563 to your computer and use it in GitHub Desktop.
Responsive images with Flexbox
<figure>
<img />
</figure>
figure {
display: flex;
align-items: flex-start;
max-height: 450px;
overflow: hidden;
}
figure > img {
width: 100%;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment