Punchinello
Programmer
I need to create a really, really simple static html file like a beginner might create. It needs to display a collection of data elements in the format Caption: Value where the "Captions" are right-aligned in a column and the "Values" are left-aligned in the next column but not all rows will have the same number of columns. For example:
[tt]
Name: John Smith ID: 59403
Address: 123 Main Street
City: Washington State: DC Zip: 22101
[/tt]
I have used tables with align and that works fine, but is there an alternative (preferred or otherwise) to using tables for aligning data on a row-by-row basis?
[tt]
Name: John Smith ID: 59403
Address: 123 Main Street
City: Washington State: DC Zip: 22101
[/tt]
I have used tables with align and that works fine, but is there an alternative (preferred or otherwise) to using tables for aligning data on a row-by-row basis?