0
私の「終了日」フィールドが「雇用日」と同じ行にない理由は誰にも分かりますか?上記のすべてのフィールドと同じルールに従っていますか?同じ行のブートストラップフィールド
<h1>Employee</h1>
<fieldset>
<h2>Employee Information</h2>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label>Name</label>
<input id="name" name="name" type="text" class="form-control required">
</div>
<div class="form-group">
<label>Date</label>
<input id="todaysDate" name="todaysDate" type="text" class="form-control required">
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label>Job Title</label>
<input id="title" name="title" type="text" class="form-control required email">
</div>
<div class="form-group">
<label>Department</label>
<input id="department" name="department" type="text" class="form-control">
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label>Date Hired</label>
<input id="hiredDate" name="hiredDate" type="text" class="form-control required email">
</div>
<div class="form-group">
<label>Termination Date</label>
<input id="termDate" name="termDate" type="text" class="form-control">
</div>
</div>
</div>
</fieldset>
@DavidBrierton私は2つの選択肢があります:1行に2列(1列に3つの入力があります)、3行に2列(1列に1つの入力)があります。 – ShinDarth