Hi,
I do have a table with n+1 cells (TD).
Each of the first n cells have a content (text), the last one is empty.
My table has a width of 100%.
I want each of the first n cell to be wide enough to show the texte and the last one to fullfill the rest of the space ...
<-------------------------- width of the sreen ----------------------------->
(Text1 I Another Text I One more text I I
I have
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td>Text1</td>
<td>Another Text</td>
<td>One more Text</td>
<td width="*"></td>
But the result is that all cell are wider than supposed (there are not restrict to the width of the text).
Any idea ???
Thanks and merry xmas