Originally posted by catsfive
HOW can I tack a <DIV>'s position to a TD? Or an image? Or something? I want it to always show up at the bottom...
If you are abusing <table> for layout it's going to be tricky, but otherwise it's easy.
You simply position an entity and every child of it will be positioned relative it.
Eg
<div style="position:relative; top:0; left:0;">
<div style="position:absolute; top:10px; left:10px;"></div>
<div style="position:absolute; top:10px; left:10px;"></div>
<div style="position:absolute; top:10px; left:10px;"></div>
</div>
The 3 divs nested in the original div will all be placed with their top left corner 10px down and to the right of the parent.