I\'d like to center a vertically aligned button in a div using bootstrap
-
You can use display:inline-block
and vertical-align:middle
:
.col-xs-2, .col-xs-10 {
display: inline-block;
float: none;
}
.col-xs-10 {
vertical-align: middle;
}
Here's a demo fiddle.
Though you will have to make sure to remove the white space in between the column s in your markup. Refer to this answer for more information on that.
- 热议问题