is there a way to divide the page when using HTML?

  • Thread starter Thread starter John S
  • Start date Start date
J

John S

Guest
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?
 
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>
 
Back
Top