0
Is it posible to aling the text of a hyperlink to any side? "<a href="https://www.google.com" aling="center">M</a>
Thank you
2 ответов
+ 1
Yes! Just nest the <a> element in a div element then style the div to align all it's items to the alignment that you please.
Eg:
<div style="align-items: center;">
<a href="www.google.com">kjskdjasdajdhakdhkasjdhksajajdskj</a>
</div>
you can use external css if you want to as well.
0
Thank you very much