Creating Resizing Rollover Thumbnails
Sometimes we just don't have enough space to fit in large thumbnails in certain places but we would like to avoid small and hard to recognize images. Limiting the default dimensions of the thumb we can show the thumbnail in full size when user mouse-ove it. What we have here is not actual image resizing. It is a resizing of the thumb's visible area on mouse over using the overflow property!
The idea is simple, place an image into a certain tag. Since we're are dealing with thumbnails that tag would be an <a> tag. We set the size (width and height) of the tag to values we want and we set the position property of the tag to relative. The image inside has an absolute position. We will use negative top and left values to offset the image. The tag has overflow set to hidden so only a part of the image that is placed inside the container's actual area will be visible. The rest of it will be hidden. On a:hover we set the tag's overflow to visible, and reveal entire image.
For markup we use standard tags