CSS text-align Property
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
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.
Complete CSS Reference
|