Reputation: 4738
I have a form-group inside a horizontal form. In this form-group, the right element is higher than the left one. For this reason, I want to center the left element vertically in its row. For instance:
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email1</label>
<div class="col-sm-10"> <!-- higher element -->
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
<br>Random stuff
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email2</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
</form>
Email1
is currently shown at the top of its own row as can be seen in this plunker snippet.
EDIT: So to clarify my intentions, this is the current state:
And this is what I would like to have (the blue area is the previously mentioned "row"):
Upvotes: 7
Views: 16128
Reputation: 2762
You will also need to control this if viewed on a small device, as the label will be on top of the input.
I have added some more bootstrap to cover this for you.
See in this Fiddle.
<div class="container block ">
<div class="col-md-6 col-md-offset-3 col-sm-7 col-sm-offset-2 col-xs-11 col-xs-offset-0">
<form class="form-horizontal">
<div class="row block bg-info form-group">
<label for="inputEmail3" class="label1 col-sm-2 col-xs-2 control-label">Email1</label>
<div class="col-md-8 col-sm-9 col-xs-9 col-xs-push-1"> <!-- higher element -->
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
<br>Random stuff
<br>Random stuff
<br>Random stuff
</div>
</div>
<div class="row block bg-info form-group">
<label for="inputEmail3" class="label2 col-sm-2 col-xs-2 control-label">Email2</label>
<div class="col-md-8 col-sm-9 col-xs-9 col-xs-push-1">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
</form>
</div>
</div>
Upvotes: 0
Reputation: 17379
If you are ready to drop support for some "old" browsers, you can use the flexbox features (see caniuse.com flex)
<div class="form-group flex-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email1</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
<br>Random stuff
</div>
</div>
@media (min-width: 768px) {
.flex-group {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
}
.form-horizontal .flex-group .control-label {
padding-top: 0;
}
}
http://plnkr.co/edit/BQ6C4LGiL4oe1ZQTQ3Ys
Upvotes: 14
Reputation: 29
You could just set the line-height equal to the height using CSS. Also, don't repeat domain IDs, you can only use id="inputEmail3" once. I changed both IDs to fit the text.
CSS
label[for="inputEmail3"]{
height: 74px;
line-height: 74px;
}
HTML
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email1</label>
<div class="col-sm-10"> <!-- higher element -->
<input type="email" class="form-control" id="inputEmail1" placeholder="Email">
<br>Random stuff
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email2</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail2" placeholder="Email">
</div>
</div>
</form>
Upvotes: 2
Reputation: 1590
You can do this:
.form-horizontal .form-group {
transform-style: preserve-3d;
}
.form-horizontal .vertically-aligned-label {
position: relative;
top: 50%;
transform: translateY(50%);
}
Upvotes: 0
Reputation: 5444
If you just want label1 to drop down as in your image, can't you just add a class giving it some padding-top? Like in this jsfiddle
Not clear on whether you want all dropped down or just label1.
CSS
.label1{padding-top:35px !important}
HTML
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="label1 col-sm-2 control-label">Email1</label>
<div class="col-sm-10"> <!-- higher element -->
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
<br>Random stuff
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email2</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
</form>
Upvotes: 0