<a> to center of page? [Answered] | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

<a> to center of page? [Answered]

How do I get <a> to move to center of page

14th Mar 2017, 5:03 AM
Cory Gutierrez🔹
Cory Gutierrez🔹 - avatar
3 Answers
+ 7
position: absolute; display: block; top: 50%; left: 50%; width: 200px; height: 30px; line-height: 30px; margin-left: -100px; margin-top: -15px; text-align: center;
14th Mar 2017, 6:37 AM
Mario L.
Mario L. - avatar
+ 6
By using Only HTML, 1. <p align=center><a href="www">1st site</a></p> 2. <center><a href="www">2nd site</a></center>
14th Mar 2017, 5:29 AM
Sachin Artani
Sachin Artani - avatar
+ 6
Thanks for y'all's help I appreciate it!!!
14th Mar 2017, 7:03 AM
Cory Gutierrez🔹
Cory Gutierrez🔹 - avatar