J John S Guest Mar 15, 2009 #1 Like if you wanted to have 8 pictures form a line across the screen, in a single row, but you wanted them to automatically space themselves out equally. Could you do that, or would you have to use trial and error?
Like if you wanted to have 8 pictures form a line across the screen, in a single row, but you wanted them to automatically space themselves out equally. Could you do that, or would you have to use trial and error?
S steph Guest Mar 15, 2009 #2 I guess you could try tables. Here: http://www.pageresource.com/html/table1.htm
T Taliesan New member Mar 15, 2009 #3 Yes, you can use a table with a set width between each cell. Something like this maybe: <table width=100% cellspacing=2> <tr> <td width=10%> <img src=url> </td> <td width=10%> <img src=url> </td> etc.... </tr> </table>
Yes, you can use a table with a set width between each cell. Something like this maybe: <table width=100% cellspacing=2> <tr> <td width=10%> <img src=url> </td> <td width=10%> <img src=url> </td> etc.... </tr> </table>