automated backlinks

Wednesday, June 4, 2014

Centering Text with CSS


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 style sheet:
p {text-align: center;}
or this to inline styling:
<p style="text-align: center;">This is centered text</p>
will center your text.
- See more at: http://www.websitecodemaker.com/blog

No comments:

Post a Comment