I must display a series of numbers in a table. Normally, we place table cells in table rows. This means that the values will print from left to right. I must display my values in an up-down pattern.
For example, a typical table might look like this...
first cell second cell third cell
fourth cell
My table must look like this...
first cell fourth cell
second cell
third cell
So instead of the table row tag ("<tr>"), I need a hypothetical table column tag ("<tc>"). I imagine that such a tag must exist, but I don't remember seeing it previously. How should I proceed?
For example, a typical table might look like this...
first cell second cell third cell
fourth cell
My table must look like this...
first cell fourth cell
second cell
third cell
So instead of the table row tag ("<tr>"), I need a hypothetical table column tag ("<tc>"). I imagine that such a tag must exist, but I don't remember seeing it previously. How should I proceed?