TEXT-ALIGN Property In CSS
text-align Property in CSS
text-align property Declares the horizontal alignment of inline content.
Possible Value:
left right center justify If used on a set of table cells, this property can be given a string value to which the text of each row of the column will be aligned.
Examplediv { text-align:center; }
div { text-align:right; }
td { text-align:"."; }