Hi everyone,
I have a table which, in order to line up with other information, needs to have very exact column widths.
So far I have implemented the following with normal HTML tables ...
<td align="RIGHT" width="77">
... which works OK most of the time.
However, sometimes the data contained in the table overshoots the column width and the table starts to 'distort'.
So my question is whether there is a way to make the column widths 'absolute' thereby suppressing any changes caused by querks in the data?
Maybe this has something to do with the declared table width ...
<TABLE width="999" border="1" ALIGN="LEFT">
... or should I leave out a declared table width when the colum widths are specifically declared?
Many thanks for any tips you can give me.
Regards,
Alan Searle
I have a table which, in order to line up with other information, needs to have very exact column widths.
So far I have implemented the following with normal HTML tables ...
<td align="RIGHT" width="77">
... which works OK most of the time.
However, sometimes the data contained in the table overshoots the column width and the table starts to 'distort'.
So my question is whether there is a way to make the column widths 'absolute' thereby suppressing any changes caused by querks in the data?
Maybe this has something to do with the declared table width ...
<TABLE width="999" border="1" ALIGN="LEFT">
... or should I leave out a declared table width when the colum widths are specifically declared?
Many thanks for any tips you can give me.
Regards,
Alan Searle
Comment