Apologies for admitting this on Stackoverflow, but I'm struggling to center an element and the center
tag seems to do the trick. My CSS skills are limited, so I'm reaching out to see if there's a better way to achieve this?
<div class="container-fluid">
<div class="row">
<div class="col-lg-2"><img alt="Logo" src="./images/logo.png">
</div>
<div class="col-lg-8">
<center><span> text to center</span></center>
</div>
<div class="col-lg-1">
<span element></span>
</div>
</div>
</div>
Appreciate any suggestions or guidance. Thank you!