Skip to content

Instantly share code, notes, and snippets.

@sarvar
Created January 10, 2017 05:33
Show Gist options
  • Save sarvar/ddf39856f90770fce35c3b1e569347d1 to your computer and use it in GitHub Desktop.
Save sarvar/ddf39856f90770fce35c3b1e569347d1 to your computer and use it in GitHub Desktop.
Vertical align center image on bootstrap.
<div class="container">
<div class="row">
<div class="col-sm-6 vertical-center">
<img src="https://www.google.com/textinputassistant/tia.png" alt="" />
</div>
<div class="col-sm-6">foo<br/>bar<br/>foo<br/>bar<br/>foo<br/>bar<br/></div>
</div>
</div>
html,body,.container {
height: 100%;
}
.container {
display: table;
}
.row
{
height: 100%;
display: table-row;
}
.vertical-center
{
display: table-cell;
float: none;
vertical-align: middle;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment