Mar 21, 2012, by admin
Centering text and other components can simply be done with the CSS text-align property. It can be applied to a division, the p tag – pretty much any block-level components.
Applying this to an internal or external stylesheet:
p {text-align: center;}
or this to inline styling:
<p style=”text-align: center;”>This is centered text</p>
will center your text.