MrCoco: Iframe in den Hintergrund

Beitrag lesen

Ich möchte ein Iframe in den hintergrund setzen und ein Bild (das Websiten-Logo) darüber legen (das Bild deckt nur einen kleinen Teil des Iframes aus). Ich habe das Iframe und das Logo in einen div getan. Aber irgendwie funktioniert das nicht! Der Quelltext beim Bild sieht dann so aus:
<div style="z-index:1; position: absolute; top:108px; left:300px">
<img src="../files/img/logo.png" width="100" height="22" alt="Logo">
</div>
Und beim Iframe so:
<div style="z-index:0; position: absolute; top:100px">
<iframe width="700" height="300"
src="xyz.html"
frameborder="0"></iframe>
</div>
Entdeckt jemand einen Fehler?
Oder warum geht's nicht?
Danke für eure Antworten!