+ 6
<a> to center of page? [Answered]
How do I get <a> to move to center of page
3 Respostas
+ 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;
+ 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>
+ 6
Thanks for y'all's help I appreciate it!!!