Bootstrap でボタンと入力がうまく整列しないのはなぜですか?
私は次のような簡単なことを試しました:
<input type="text"/><button class="btn">button</button>
ボタンは5px
chrome/firefox の入力よりも低い位置にあります。
Bootstrap でボタンと入力がうまく整列しないのはなぜですか?
私は次のような簡単なことを試しました:
<input type="text"/><button class="btn">button</button>
ボタンは5px
chrome/firefox の入力よりも低い位置にあります。
input-group-prepend
Twitter Bootstrap 4 では、および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
使用して整列する 2 番目の方法があります。.form-horizontal
<div class="form-horizontal">
<input name="search" id="search"/>
<button class="btn">button</button>
</div>
これら 2 つのクラスの違いは、が要素に対して上.input-append
に配置され(したがって、それらが結合されているように見えます)、 がそれらの間にスペースを配置することです。button
input
.form-horizontal
- ノート -
input
要素とbutton
要素が間隔を空けずに隣り合うようにするために、クラスでfont-size
が に設定されています(これにより、要素間の空白が削除されます)。または測定値を使用してデフォルトを上書きしたい場合、これは要素のフォントサイズに悪影響を与える可能性があります。0
.input-append
inline-block
input
em
%
注意してください、これには特別なCSSクラスがあるようですform-horizontal
input-append には、font-size をゼロにするという別の副作用があります。
私は何よりも試してみましたが、共有したい変更がほとんどありませんでした. これが私のために働くコードです(添付のスクリーンショットを見つけてください):
<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" の display プロパティをオーバーライドし、他のスタイル プロパティを使用してサイズと位置を修正しました。
結果は次のとおりです。
<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>
style="padding-top: 8px"
これを使用して、行内で div を上下にシフトします。私にとって不思議に働きます。