QUOTE(Xander @ Jun 23 2007, 10:22 PM)

Is there an html tag that will lock in a tables dimensions?
No.
QUOTE(Xander @ Jun 23 2007, 10:22 PM)

I have a table that I put as a width of 500 and height of 500, but then I put an image in one of the table details which has a default size of over 1,000 width and height. When the page loads, the full image is there instead of one that is compressed to the table's 500x500 dimensions.
You've got two basic options: crop the image or resize the image.
You can use CSS to "crop" the image by specifying the overflow property, but it's better to have your server send a cropped image file. That way you aren't wasting bandwith for a 1000px image that you're only going to show half of.
You can use HTML or CSS to "resize" the image by specifying a width of only 500px, but it's better to have your server send a resized image file. That way you aren't wasting bandwidth for a 1000px image that you're going to resize to only half that size.