I am currently utilizing bootstrap 5 for my project.
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Stay in contact</h5>
<p><i class="fa fa-map-marker-alt me-3"></i>619 Otaroad-north-Sidrac, New York, New York 291290 </p>
<p><i class="fa fa-phone-alt me-3"></i><a href="tel:213-622-1212">213-622-1212</a></p>
<p><i class="fa fa-envelope me-3"></i><a href="mailto:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="85e7eae7c5e7eae7abf0f6e4">[email protected]</a>"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="177578755775787539626476">[email protected]</a></a></p>
</div>
Is there a way to format text on multiple lines so that it aligns correctly?
How can I ensure that "New York" is aligned with "619" in the address?
I attempted replacing the p tag with span and adding the style: word-wrap: break-word;
However, this did not achieve the desired outcome.