Skip to content

Instantly share code, notes, and snippets.

@joviczarko
Last active November 9, 2016 14:47
Show Gist options
  • Save joviczarko/89c3226434d101e7032c5f94e437f107 to your computer and use it in GitHub Desktop.
Save joviczarko/89c3226434d101e7032c5f94e437f107 to your computer and use it in GitHub Desktop.
Bootstrap column vertical centered (middle aligned) divs
<div class="row">
<div class="col-xs-6 vcenter">
<div>Div1</div>
</div>
<div class="col-xs-6 vcenter">
<div>Div2</div>
</div>
</div>
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment