vertical-align with Bootstrap 3
This answer presents a hack, but I would highly recommend you to use flexbox (as stated in @Haschem answer), since it’s now supported everywhere. Demos link: – Bootstrap 3 – Bootstrap 4 alpha 6 You still can use a custom class when you need it: .vcenter { display: inline-block; vertical-align: middle; float: none; } <div … Read more