I've looked everywhere, but with no luck. I have set the middle cell of a row of my table to stretch across at 100%. It sits between two outer cells which are set at a width of 50 pixels each. Everything works fine, except that I cannot quite figure out how to allow the middle cell a minimum width upon browser resizing. So, for example, I may only wish for it's width to be able to compact as small as 200 pixels. But, stretch out as far as the browser can go.
Anyone have any suggestions. The code is below.
Code:<html> <head> <title>Chris Martindale Galleries - Project Manager</title> <head> <body> <table cellpadding=0 cellspacing=0 border=1 width=100%> <tr> <td width=50px align=center>THIS IS THE LEFTHAND</td> <td width=100% align=center>THIS IS THE MID SECTION</td> <TD width=50px align=center>THIS IS THE RIGHTHAND</td> </tr> <tr> <td colspan=1 align=left>Link1</td> <td colspan=2 align=center>SOME TEXT</td> </tr> </table> </body> </html>