You will now take the table from the previous exercise and "nest it" into one cell of a table in another file. This other table has one cell in it that will contain the entire table you just worked on.
Nesting is used for a variety of reasons, but mainly to add additional complexity to the parent table. With CSS Positioning, it is not uncommon to nest a table inside of a <div> tag (these tags are used almost exclusively for CSS Positioning).
When you go to the next page, you'll be assembling the final table. Take note of the three small narrow light blue strips at the top of the first cell in the second row (the cell that contains the links to search engines - together the three images look like an inverted "U"). These are called shims.
Similar to the shims used to level a piece of furniture, these image files are used to help control page composition. In this case, they are used to keep the links away from the walls of the cell. Cellpadding could have been used, but cellpadding affects all cells in a table equally. You cannot apply cellpadding to individual cells (td tags). Applying cellpadding to the parent table would result in the images at the top to being moved away from one another due to the padding needed for the cell that currently has the shims in it. Therefore, shims are used in this example.
Note that CSS has better tools for doing this sort of thing, but similar tricks continue to be used in tables at times, primarily for controlling the size of table rows and columns.
The shims are all made from one tiny 5 x 5 pixel light blue GIF image file. A shim is usually a GIF file that's either transparent or the same color as the background; that way their appearance won't matter when you modify their shape.
Their shape is customized to whatever size is needed to properly position the page elements. The shims' dimensions are specified using their IMG tags' WIDTH and HEIGHT attributes. In this case, the image can be stretched to any size because it is a uniform color. The distortion that would normally accompany a manipulation of a bitmap photographic image is not a problem.
Also make note of 4 new BODY margin attributes that I've added. These are placed to control the distance between the edges of the browser window and its contents. By default there is usually a gap. We don't want a gap because it would place a white border around our newsletter. We covered margins in an earlier lesson, but not in the context of preventing margins. Both are needed to support all browsers.
© 2011 Dan Vaughan and its licensors. All rights reserved.