Change your HTML to this
<table>
<tbody>
<tr>
<td class="donotwant">
<div class="top">
<a href="bing.com">link</a>
</div>
<iframe src="http://www.google.com" ></iframe>
</td>
</tr>
<tr>
<td class="donotwant">
<div class="top">
<a href="bing.com">link</a>
</div>
<iframe class="bottom" src="http://www.wikipedia.com" ></iframe>
</td>
</tr>
</tbody>
</table>
And you CSS to this:
.donotwant {
border:2px dotted green;
position:relative;
height:180px;
width:300px;
}
.top {
top:80px;
left:120px;
position:absolute;
z-index:2;
}
.bottom {
position:relative;
z-index:1
}
A relative position object keeps it's initial placement but is displayed elsewhere. An absolute positioned element is actually moved to a new position. You can move absolute positioned elements on top of relative positioned.
In the example above I created a div that is relative positioned in which any absolute position element can be moved around from of the top left corner of the relative positioned element. If the relative positioned element is moved anywhere else on the page the absolute one will follow.
#donotwant? – Sotiris Jul 12 '11 at 20:42#top'sposition:relativetoposition:absolute. That would remove the extra space above, I don't know how that would affect your page though as you've only shown a snippet. – kei Jul 12 '11 at 20:43