Skip to content

Instantly share code, notes, and snippets.

@webarthur
Last active July 24, 2016 04:49
Show Gist options
  • Save webarthur/b72c227903376f1f0f589a3b24e58b4c to your computer and use it in GitHub Desktop.
Save webarthur/b72c227903376f1f0f589a3b24e58b4c to your computer and use it in GitHub Desktop.
Como centralizar verticalmente uma div com flexbox
<style>
.absmiddle {
display:flex;
align-items:center;
}
</style>
<div class="absmiddle" style="height:100px; background:gold">
<div>
Elemento verticalmente centralizado!
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment