初めに
現在、入力フォームを複数出力し、左端をそろえようとしています。
環境
windows10
eclipse
bootstrap4
コード
html
1<div class="content"> 2<h2 class="head">試し</h2> 3<form action="" method="post"> 4 <div class="form-group row"> 5 <label for="text3a" class="col-sm-2 col-form-label">入力1</label> 6 <div class="col-sm-10"> 7 <input type="text" name="" size="5" id="text3a" class="form-control" required ><br> 8 </div> 9 </div> 10 <div class="form-group row"> 11 <label for="Password" class="col-sm-2 col-form-label">入力場所2</label> 12 <div class="col-sm-10"> 13 <input type="text" id="zipcode" name="" size="5" class="form-control" id="Password" required pattern="\d{3}-?\d{4}"> 14 </div> 15 </div> 16</form>
出力結果
入力1
□
入力場所2
□
## やりたいこと
入力1 □
入力場所2 □
□の左辺を揃えたい ↑
ここの端を揃えたい
回答2件
あなたの回答
tips
プレビュー