I'm a beginner exploring Bootstrap and attempting to design an HTML form using Bootstrap input-groups
with captions in the input-group-prepend
. I am looking to create a setup where a single caption is displayed before multiple styled lines inside the corresponding form-control
element, similar to the image below:
This is what I have tried so far in my HTML code:
<div class="container">
<div class="row">
<div class="input-group mb-2 col-12">
<div class="input-group-prepend">
<span class="input-group-text">Caption<br/></span>
</div>
<span class="form-control">
<p>Line 1</p>
<p><strong>Line 2</strong></p>
<p><strong>Line 3</strong></p>
</span>
</div>
</div>
</div>
The current outcome appears as follows:
I need help on how to display multiple lines within the right-hand part of the bordered section. Any advice or suggestions are highly welcomed.