CSS not to offer.
I can not achieve the result when the two columns in the table, one of them 100 px, and the second fills the remaining space in width.
Code:
<table width="100%"> <tr> <td width="100px">Ячейка 1</td> <td width="100%-100px">Ячейка 2</td> </tr> </table> A tricky trick with 100% -100px works, but, I'm afraid, just not on older browsers. There are other options?