Is it possible to ALIGN all of the data cells in a particular row with the <TR> tags?
Answers
Answer:
Is it possible to ALIGN all of the data cells in a particular row with the <TR> tags?
Explanation:
A DOMString which specifies how the cell's context should be aligned horizontally within the cells in the row; this is shorthand for using align on every cell in the row individually. Possible values are:
left
Align the content of each cell at its left edge.
center
Center the contents of each cell between their left and right edges.
right
Align the content of each cell at its right edge.
justify
Widen whitespaces within the text of each cell so that the text fills the full width of each cell (full justification).
char
Align each cell in the row on a specific character (such that each row in the column that is configured this way will horizontally align its cells on that character). This uses the char and charoff to establish the alignment character (typically "." or "," when aligning numerical data) and the number of characters that should follow the alignment character. This alignment type was never widely supported.
If no value is expressly set for align, the parent node's value is inherited.