I want to align my h3
headings with my h5
, using Bootstrap, so they are on the same line.
UPDATE: I aim to leverage existing Bootstrap functionality and avoid modifying CSS unless absolutely necessary.
Here is a screenshot illustrating what I mean: https://i.sstatic.net/Clixd.png
For example, "First Name" should be aligned with "Address 1", "Last Name" with "Address 2", and so on.
Below is the code snippet I currently have:
<div class="row ">
<div class="col-md-4 ">
<h3>First Name</h3>
<h3>Last Name</h3>
<h3>Week.</h3>
<h3>Code.</h3>
</div>
<div class="col-md-4 ">
<h5>Address 1</h5>
<h5>Address 2</h5>
<h5>Address 3</h5>
<h5>Country</h5>
</div>
</div>