Using Bootstrap v4, how can you build a form like the one seen below?
I'm trying to understand if I should be using form-inline with either multiple form-groups or multiple rows?
Using Bootstrap v4, how can you build a form like the one seen below?
I'm trying to understand if I should be using form-inline with either multiple form-groups or multiple rows?
You'll want to use form-group and fieldset
form-group groups the input elements on the same line
fieldset makes the label appear above the input
Jsfiddle: https://jsfiddle.net/5wbeqmgc/2/
Not perfect, but a simple example using columns: https://jsfiddle.net/5wbeqmgc/4/
form-group and the fieldset.