I'm trying to get the SVG icon to align to the right of the H4 and center vertically using Bootstrap 5. This isn't working.
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<div class="justify-content-start"><h4>Title 1</h4>
</div>
<div class="justify-content-end">SVG goes here</div>
</div>
</div>
</div>
There's a second container that is the same content floated to the right of this one. My problem is that the SVG won't float to the right.
Any assistance would greatly be appreciated.
Your column needs a
display:flex
layout context:So you need to add a
d-flex
class property.For aligning of your svg icon to the right you could just add
justify-content-between
to your element's class (since you just have two elements – your icon will get pushed to the right).Alternative: margin-left:auto (ms-auto)
See also: