I have this text:
How can I move the "advisor" bit to the middle of the top two words instead of to the left like that.
Code (ignoring margin-left
):
<h6 style="margin-left: 795px;">Connect with <br>Consultants</h6>
P粉8785424592023-09-16 16:15:08
Using CSS Text Alignment
<h6 style="text-align:center">Connect with<br>Consultants</h6>