Last active
August 24, 2018 15:59
-
-
Save eduardomart/5bdcfa9271898b1bb5cf to your computer and use it in GitHub Desktop.
BS3 Vertical center of row items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vcenter { | |
display: inline-block; | |
vertical-align: middle; | |
float: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="col-sm-5 vcenter"> | |
<div style="height:10em;border:1px solid #000">Big</div> | |
</div> | |
<div class="col-sm-3 vcenter"> | |
<div style="height:3em;border:1px solid #F00">Small</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment