How can I add vertical space between the div's. Is there any bootstrap class I can add here? Any help?
Below is the snippet from my code:
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="control-label col-lg-4"> Project: </label>
<div class="col-lg-8">
@Html.TextBoxFor(model => model.detailsConfig.Project, new { onkeypress = "return isNumberKey(event)", @class = "form-control", id = "Project" })
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="control-label col-lg-4">Quantity:</label>
<div class="col-lg-8">
@Html.TextBoxFor(model => model.detailsConfig.Quantity, new { onkeypress = "return isNumberKey(event)", @class = "form-control", id = "Quantity" })
</div>
</div>
</div>
</div>