は、私はselect属性が選択し、ラジオボタンに必要な属性
<select required></select>
でなければならないことを知っている。しかし、私はそれを置くだろうか?
<div class="col-md-6">
<div class="form-group">
<label for="sel1">Which division of our company are you interested in *</label>
<select class="form-control" id="sel1">
<option>Please select one</option>
<option>Video game consoles and accessories</option>
<option>Gaming and entertainment gift cards/codes</option>
<option>Both</option>
</select>
</div>
</div>
をまた、どのようにCSSを持っている:(私を助けてください私は同様に必要なラジオボタンを作ることができますか?オプションを指定するその他-してくださいについて。
<div class="col-md-6">
<label for="form_business">Type of business *</label>
<div>
<label class="radio-inline" style="padding-left:30px;">
<input type="radio" name="optradio">Retailer
</label>
<label class="radio-inline">
<input type="radio" name="optradio">Other - Please specify
</label>
<input id="form_other" type="text" name="other" class="form-control" placeholder="Please specify">
</div>
</div>
... 'このため –