Centering text and other elements can
easily be done with the CSS text-align property. It can be applied to a
division, the p tag – pretty much any block-level element.
Applying this to an internal or external stylesheet:
or this to inline styling:
p {text-align: center;}
<p style="text-align: center;">This is centered text</p>
will center your text.
0 comments:
Post a Comment