行中的垂直对齐列

时间:2016-02-19 12:53:01

标签: css twitter-bootstrap

我的行项目目前与我的行顶部对齐:

enter image description here

有没有办法可以水平对齐它们?

<div className="row well">
        <div className="col-xs-12 col-lg-3">

        </div>
        <div className="col-xs-12 col-lg-6">

        </div>
        <div className="col-xs-12 col-lg-3">

            <Button bsStyle="default pull-right">
                <Icon type="user" /> xx People
            </Button>

        </div>
</div>

1 个答案:

答案 0 :(得分:-1)

转换内联块元素中的按钮以定义垂直对齐:

button {
   display: inline-block;
   vertical-align: middle;
}