0
.input-group
を<div>
の内側に配置したいと考えています。クラスcenter-block
を使用すると、<span>
は全幅をとり、その下の入力フィールドを押し下げます。私は一緒にそれらを中心にしたい。div内のinput-groupを中心にするには?
<div class="col-lg-12 col-sm-12 col-md-12 col-xs-12">
<div class="input-group input-group-lg inv-amount-block">
<span class="input-group-addon" id="inv-rs">Rs</span>
<input type="text" class="form-control" placeholder="Your Amount" aria-describedby="basic-addon1">
</div>
</div>
私はそれらをデフォルトでのように中央に配置したいと思っています。 - display: block
とdisplay: table
の違いがあることである:ここでは
は、編集した.center-block
ためCSS
に表示プロパティを変更fiddle
説明のビットがいいだろう。 –