Nov 16, 2003 #1 mainmast Programmer Jun 26, 2003 176 US How can I make table's be stationary when resizing the window, making a horizontal scrollbar instead of the tables crashing into each other? Thanks! "Everything is possible, it just depends on how much you want to pay for it." -James
How can I make table's be stationary when resizing the window, making a horizontal scrollbar instead of the tables crashing into each other? Thanks! "Everything is possible, it just depends on how much you want to pay for it." -James
Nov 16, 2003 #2 byam Programmer Oct 24, 2003 396 CA You can set fixed width for table and columns. e.g. <table width="400"> <tr> <td width="100"> </td> <td width="100"> </td> <td width="100"> </td> <td width="100"> </td> </tr> </table> Upvote 0 Downvote
You can set fixed width for table and columns. e.g. <table width="400"> <tr> <td width="100"> </td> <td width="100"> </td> <td width="100"> </td> <td width="100"> </td> </tr> </table>
Nov 16, 2003 #3 jammer1221 Programmer Jul 30, 2003 352 US or just using pixels (px) instead of percentages (%) but ud have to change every table to pixels in order for it to work Upvote 0 Downvote
or just using pixels (px) instead of percentages (%) but ud have to change every table to pixels in order for it to work