0

My row items are currently aligned to the top of my row:

enter image description here

Is there a way I can align them horizontally?

<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>
Ayoub Abid
  • 432
  • 5
  • 15
Bomber
  • 10,195
  • 24
  • 90
  • 167

1 Answers1

-1

Transform the button in an inline-block element to define the vertical align:

button {
   display: inline-block;
   vertical-align: middle;
}
Marcos Pérez Gude
  • 21,869
  • 4
  • 38
  • 69