I'm working in bootstrap and looking to create a form that has 2 rows and a submit button. The first row should have 1 number field, where row 2 should have 3 number fields directly underneath the first row. Do I use the column and row class like below?
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<form role="form">
<div class="row">
<input type="number" class="col-xs-12">
</div>
<div class="row">
<input type="number" class="col-xs-3">
<input type="number" class="col-xs-3">
<input type="number" class="col-xs-3">
</div>
</form>
Any help is appreciated!