Property: Text Alignment
Usage:
text-align: center;
text-align: left;
text-align: right;
text-align: justify;
Definition:
This will align the text with in the object area.
It takes the following values.
a)center : This value aligns the text to center.
b)left : This value aligns the text to left.
c)right : This value aligns the text to right.
d)justify : This justifies the text with default value.
Example 1:
<div style=" text-align: center;">testing text align</div>
Result:
testing text align
Example 2:
<div style=" text-align: left;">testing text align</div>
Result:
testing text align
Example 3:
<div style=" text-align: right;">testing text align</div>
Result:
testing text align
Example 4:
<div style=" text-align: justify;">testing text align</div>
Result:
testing text align
|