html - TD width - the minimum needed using CSS -
consider table:
<table style="width: 100%"> <tr> <td>static length</td> <td>static length</td> <td><div>length varies</div></td> <td>space filler</td> </tr> <tr> ... </tr> </table>
how can make 3rd column take minimum width (depending on content) , 4th column take rest?