just use td width of like 20% for each one if you have 5 thumbs, 25% for 4, etc. Makes them nicely spaced out if they are all the same size thumbs.
ZoiNk
"People can have the Model T in any color - so long as it's black." - Henry Ford
"I try to make a habit of bouncing my eyes up to the face of a beautiful woman, and often repeat “not mine” in my head or even verbally. She’s not mine. God has her set aside. She’s not mine. She’s His little girl, and she needs me to fight for her by keeping my eyes where they should be."
It depends on whether you want the table to resize or remain a fixed width.
Let's say you have six columns and x number of rows. You want the six columns to remain a consistent width regardless of image orientation, then do this,
6 cols to fit is 16% each and the table resulting width = 96%
The easiest way to do this is to set the width on a blank header row, then start your normal table rows with images in each of the 6 cells. Using a header allows your property settings to affect the entire column.
Having a fixed width table will require you to manually compute the width of each header cell for the width of the table based on the unit of measure you use, px, pt, in, etc. If your table width is ~ 500px, then your cell width will be 83px, resulting in a table width = 498px.
This is assuming you have no border, spacing, or padding set for the table. If you have any of these properties set, then the box model will change.
Comment