为什么按钮和输入在 Bootstrap 中不能很好地对齐?
我尝试了一些简单的方法,例如:
<input type="text"/><button class="btn">button</button>
该按钮大约5px
低于 chrome/firefox 中的输入。
为什么按钮和输入在 Bootstrap 中不能很好地对齐?
我尝试了一些简单的方法,例如:
<input type="text"/><button class="btn">button</button>
该按钮大约5px
低于 chrome/firefox 中的输入。
在 Twitter Bootstrap 4 中,可以使用input-group-prepend
和input-group-append
类对齐输入和按钮(请参阅https://getbootstrap.com/docs/4.0/components/input-group/#button-addons)
<div class="input-group mb-3">
<div class="input-group-prepend">
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>
<input type="text" class="form-control">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>
</div>
如@abimelex 的回答所示,输入和按钮可以通过使用.input-group
类来对齐(参见http://getbootstrap.com/components/#input-groups-buttons)
<div class="input-group">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
<input type="text" class="form-control">
</div>
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
添加了此解决方案以使我的答案保持最新,但请对@abimelex 提供的答案投赞成票。
Bootstrap 提供了一个.input-append
类,该类用作包装元素并为您更正此问题:
<div class="input-append">
<input name="search" id="search"/>
<button class="btn">button</button>
</div>
正如@OleksiyKhilkevich 在他的回答中指出的那样,还有第二种对齐方式input
和button
使用.form-horizontal
类:
<div class="form-horizontal">
<input name="search" id="search"/>
<button class="btn">button</button>
</div>
这两个类之间的区别在于,.input-append
将button
向上放置在input
元素上(因此它们看起来像是附加的),它们.form-horizontal
之间将放置一个空格。
- 笔记 -
为了允许input
和button
元素彼此相邻而没有间距,font-size
已0
在类中设置了 (这将删除元素.input-append
之间的白色间距)。如果您想使用或测量来覆盖默认值inline-block
,这可能会对元素中的字体大小产生不利影响。input
em
%
引导程序 5
<div class="input-group">
<input type="text" class="form-control">
<button class="btn btn-outline-secondary" type="button">Go</button>
</div>
引导程序 3 和 4
您可以使用input-group 按钮属性将按钮直接应用于输入字段。
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div><!-- /input-group -->
请注意,这似乎有一个特殊的 CSS 类form-horizontal
input-append 有另一个副作用,它会将 font-size 降为零
使用.form-inline = 这将左对齐标签和内联块控件以实现紧凑布局
示例:http: //jsfiddle.net/hSuy4/292/
<div class="form-inline">
<input type="text">
<input type="button" class="btn" value="submit">
</div>
.form-horizontal = 右对齐标签并将它们浮动到左侧,使它们与控件出现在同一行,这对于 2 列表单布局更好。
(e.g.
Label 1: [textbox]
Label 2: [textbox]
: [button]
)
我首先尝试了一些我想分享的更改。这是对我有用的代码(找到随附的屏幕截图):
<div class="input-group">
<input type="text" class="form-control" placeholder="Search text">
<span class="input-group-btn" style="width:0;">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
如果你想看到它工作,只需在你的编辑器中使用下面的代码:
<html>
<head>
<link type='text/css' rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css' />
</head>
<body>
<div class="container body-content">
<div class="form-horizontal">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search text">
<span class="input-group-btn" style="width:0;">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
</div>
</div>
</body>
</html>
希望这可以帮助。
我也在为同样的问题而苦苦挣扎。我使用的引导类对我不起作用。我想出了一个解决方法,如下所示:
<form action='...' method='POST' class='form-group'>
<div class="form-horizontal">
<input type="text" name="..."
class="form-control"
placeholder="Search People..."
style="width:280px;max-width:280px;display:inline-block"/>
<button type="submit"
class="btn btn-primary"
style="margin-left:-8px;margin-top:-2px;min-height:36px;">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</form>
基本上,我覆盖了“form-control”类的显示属性,并使用其他样式属性来校正大小和位置。
结果如下:
引导程序 4:
<div class="input-group">
<input type="text" class="form-control">
<div class="input-group-append">
<button class="btn btn-success" type="button">Button</button>
</div>
</div>
<form class="form-inline">
<div class="form-group">
<label class="sr-only" for="exampleInputEmail3">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail3" placeholder="Email">
</div>
<button type="submit" class="btn btn-default">Sign in</button>
</form>
我尝试了上述所有代码,但没有一个能解决我的问题。这对我有用。我使用了输入组插件。
<div class = "input-group">
<span class = "input-group-addon">Go</span>
<input type = "text" class = "form-control" placeholder="you are the man!">
</div>
没有直接关系,除非您有类似的代码,但我只是注意到 form-inline, bootstrap 3.3.7 的奇怪行为
我没有为此使用行和单元格,因为它是一个桌面项目,如果开始标签在表格下方(在这种情况下):
<table class="form-inline">
<form>
<tr>
表单元素会堆叠。
开关并正确排列。
<form>
<table class="form-inline">
<tr>
Safari 10.0.2 和最新的 Chrome 没有任何区别。也许我的布局是错误的,但它不是很宽容。
将输入浮点数设为左侧。然后按下按钮并使其向右浮动。当您采取多于一的距离时,您可以清除固定类。
<input style="width:65%;float:left"class="btn btn-primary" type="text" name="name">
<div style="width:8%;float:left"> </div>
<button class="btn btn-default" type="button">Go!</button>
<div class="clearfix" style="margin-bottom:10px"> </div>
style="padding-top: 8px"
使用它在您的行中向上或向下移动您的 div。为我创造奇迹。