请检查我的示例。我只想将按钮与输入垂直对齐。我有标签,他们需要呆在那里。我只想在灰色背景上垂直对齐按钮。
.tab-topbar {
background-color: #e0e0e0;
padding: 20px;
margin-top: 5px;
border: 1px solid #ccc;
}
input {
width: 100%;
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="col-sm-12 tab-topbar">
<div class="row">
<div class="col-sm-6">
<label>asasasfasgasgaaaga</label><br>
<label>asasasfasgasgaaaga</label><br>
<input />
</div>
<div class="col-sm-6">
<div class="text-right">
<button>LOL</button>
</div>
</div>
</div>
答案 0 :(得分:1)
使用按钮插件
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="button">LOL</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
答案 1 :(得分:1)
使用width
和display:inline-block
将这些元素放在同一行中。
.tab-topbar {
background-color: #e0e0e0;
padding: 20px;
margin-top: 5px;
border: 1px solid #ccc;
}
input {
width:88%;display:inline-block
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="col-sm-12 tab-topbar">
<div class="row">
<div class="col-sm-6">
<label>asasasfasgasgaaaga</label><br>
<label>asasasfasgasgaaaga</label><br>
</div>
<div class="col-sm-6">
<input />
<button style="width:10%;display:inline-block">LOL</button>
</div>
</div>
答案 2 :(得分:1)
您可以使用display:flex
解决此问题,并将input
框移到text-right
类中。
这是更新的小提琴:
.tab-topbar {
background-color: #e0e0e0;
padding: 20px;
margin-top: 5px;
border: 1px solid #ccc;
}
input {
width: 100%;
}
.text-right {
display: flex;
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="col-sm-12 tab-topbar">
<div class="row">
<div class="col-sm-6">
<label>asasasfasgasgaaaga</label><br>
<label>asasasfasgasgaaaga</label><br>
</div>
<div class="col-sm-6">
<div class="text-right">
<input />
<button>LOL</button>
</div>
</div>
答案 3 :(得分:1)
.tab-topbar {
background-color: #e0e0e0;
padding: 20px;
margin-top: 5px;
border: 1px solid #ccc;
}
input {
Width: 100%;
margin-right: 10px !important;
}
.flexedDiv {
display: flex;
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="col-sm-12 tab-topbar">
<div class="row">
<div class="col-sm-12">
<label>asasasfasgasgaaaga</label><br>
<label>asasasfasgasgaaaga</label><br>
</div>
<div class="col-sm-12 flexedDiv">
<input />
<button>LOL</button>
</div>
</div>
</div>
使用此结构并在CSS中弯曲,这将使您的生活变得轻松
答案 4 :(得分:0)
可以使用Flexbox
来解决它,并且您需要更新结构。试试这个,希望对您有所帮助。谢谢
.tab-topbar {
background-color: #e0e0e0;
padding: 20px;
margin-top: 5px;
border: 1px solid #ccc;
}
.formField {
display: flex;
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="tab-topbar">
<label>asasasfasgasgaaaga</label><br>
<label>asasasfasgasgaaaga</label><br>
<div class="formField">
<input type="password" class="form-control" id="inputPassword2" placeholder="Password">
<button type="submit" class="btn btn-default">Confirm identity</button>
</div>
</div>