Twitter Bootstrapを使用して2つの登録フィールドを同じ行に表示しようとしています。1つの行に2つの入力フィールド
<div class="form-group required">
<label class="col-sm-2 control-label" for="input-firstname"><?php echo $entry_firstname; ?></label>
<div class="col-sm-10">
<input type="text" name="firstname" value="<?php echo $firstname; ?>" placeholder="<?php echo $entry_firstname; ?>" id="input-firstname" class="form-control" />
<?php if ($error_firstname) { ?>
<div class="text-danger"><?php echo $error_firstname; ?></div>
<?php } ?>
</div>
</div>
<div class="form-group required">
<label class="col-sm-2 control-label" for="input-lastname"><?php echo $entry_lastname; ?></label>
<div class="col-sm-10">
<input type="text" name="lastname" value="<?php echo $lastname; ?>" placeholder="<?php echo $entry_lastname; ?>" id="input-lastname" class="form-control" />
<?php if ($error_lastname) { ?>
<div class="text-danger"><?php echo $error_lastname; ?></div>
<?php } ?>
</div>
</div>
どうすればいいですか?あなたがこれを行う必要があり、交互に巣の列と行に許可されているブートストラップで
私はあなたがブートストラップインラインフォームを試すことができbootstrap.Youを使用していると仮定しています。<フォームクラス= "フォームインライン" ロール=」フォーム "><! - ここのフォーム要素 - > –