The text-align property specifies the horizontal text alignment.
p {
text-align: center;
}
Property |
Value |
Explanation |
text-align |
left |
aligns to the left |
center |
aligns to the center |
right |
aligns to the right |
justify |
justifies the text |
The justify value adjust the spaces between the words to justify both left and right side. (However, the last line is not justified.)
Example