From http://www.w3schools.com (Copyright Refsnes Data)
The text-align property aligns the text in an element.
Inherited: Yes
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.
p |
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 |
Align the text
This example demonstrates how to align the text.
From http://www.w3schools.com (Copyright Refsnes Data)