From http://www.w3schools.com (Copyright Refsnes Data)

CSS text-align Property


CSS Reference Complete CSS Reference

Definition

The text-align property aligns the text in an element.

Inherited: Yes


JavaScript Syntax

CSS properties can also be dynamically changed with a JavaScript.

Scripting Syntax: object.style.textAlign="right"

In our HTML DOM tutorial you can find more details about the textAlign property.

In our HTML DOM tutorial you can also find a full Style Object Reference.


Examples

p

text-align: center

Possible Values

Value Description
left Aligns the text to the left.

Default value: Browser dependent

right Aligns the text to the right
center Centers the text
justify  


Try-It-Yourself Demos

Align the text
This example demonstrates how to align the text.


CSS Reference Complete CSS Reference

From http://www.w3schools.com (Copyright Refsnes Data)