Skip to content

Instantly share code, notes, and snippets.

@jrswgtr
Last active December 1, 2016 09:53
Show Gist options
  • Save jrswgtr/d72957bf6d810d9e1e777770af241e3c to your computer and use it in GitHub Desktop.
Save jrswgtr/d72957bf6d810d9e1e777770af241e3c to your computer and use it in GitHub Desktop.
flexbox centering
<div class="aligner">
<div class="aligner-item Aligner-item--top">…</div>
<div class="aligner-item">…</div>
<div class="aligner-item Aligner-item--bottom">…</div>
</div>
.aligner {
display: flex;
align-items: center;
justify-content: center;
}
.aligner-item {
max-width: 50%;
}
.aligner-item--top {
align-self: flex-start;
}
.aligner-item--bottom {
align-self: flex-end;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment