-->

HTML P align attribute

Example

A right-aligned paragraph:
<p align="right">This is some text in a paragraph.</p>


Definition and Usage

The align attribute specifies the alignment of the text within a paragraph.

Browser Support

The align attribute is supported in all major browsers.

Compatibility Notes

The align attribute of the p element was deprecated in HTML 4.01, and is not supported in XHTML 1.0 Strict DTD.
Use CSS instead.
CSS syntax: <p style="text-align:right">

Syntax

<p align="value">

Attribute Values

Value Description
left Left-align text
right Right-align text
center Center-align text
justify Stretches the lines so that each line has equal width (like in newspapers and magazines)