Nov 16, 2003 #1 mainmast Programmer Joined Jun 26, 2003 Messages 176 Location 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 Joined Oct 24, 2003 Messages 396 Location 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 Joined Jul 30, 2003 Messages 352 Location 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