0
ブートストラップの垂直フォームでフォームグループをインラインでうまく作成するにはどうすればよいですか?ブートストラップのフォームの2つのフォームグループをインラインに垂直にする
私はそれらのインラインを作成することができますが、パディングが厄介で、ここで
<div class="form-group ">
<div class="col-sm-6">
<label for="date">Date Invoice:</label>
<input class="form-control" placeholder="Tanggal Invoice (Harus diisi)" type="text">
</div>
<div class="col-sm-6" >
<label for="date">Date Invoice:</label>
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for...">
<span class="input-group-btn">
<button class="btn btn-primary" type="button">Go!</button>
</span>
</div>
</div>
</div>
はフィドルです:JSFIDDLE、それはとても感謝任意の助け。
希望する日付請求書:2行ではなく1行にするには? – Roysh