How do I center this with css?
Original code:
div class="container body">
<div class="row">
<div>
<div class="bodyhead"><div>
<h1>We are a Creative Digital Agency</h1></div>
<div>
<a href="#"><p class="learn_more">Learn More</p></a>
</div>
</div>
<div>
<img class="laptop" src="/images/laptop.png">
</div>
</div>
</div>
</div>
I would like to do the following using only CSS
<div><center>
<a href="#"><p class="learn_more">Learn More</p></a>
</center></div>
Many thanks.
+3
Yan
source
to share
1 answer
Use property text-align
:
text-align: center;
http://jsfiddle.net/089tnjom/
<center>
is now deprecated and not supported in HTML 5.
+4
Darren Davies
source
to share