Twitter Bootstrap を使用してフォーム フィールドを水平に配置する方法
以下のHTMLコードを試しました。しかし、それは以下のように1つずつ表示されます
名- テキスト ボックス
姓- テキスト ボックス
探す
<form class="form-horizontal"> <div class="control-group"> <label class="control-label" for="first">First Name</label> <div class="controls"> <input type="text" id="first" placeholder="firstname"> </div> </div> <div class="control-group"> <label class="control-label" for="lastname">Last Name</label> <div class="controls"> <input type="text" id="lastname" placeholder="Last Name"> </div> </div> <div class="control-group"> <div class="controls"> <button type="submit" class="btn">Search</button> </div> </div> </form>
姓と名を最初の行と次の行の検索ボタンに水平に配置する必要があります。
このような
名- テキスト ボックス 姓- テキスト ボックス
探す