Is it possible to vertically center any element in the middle of an input using Bootstrap 4 without a complex structure?
The first example at https://jsfiddle.net/fekula/8j4ew5df/9/ looks good, but the second and third examples are not ideal.
<div class="form-row align-items-end">
<div class="form-group col-md-7">
<label>Name:</label>
<input class="form-control">
</div>
<div class="form-group col-md-5">
<label>
Center text
</label>
</div>
</div>
Any suggestions or solutions? Thank you.