Hi Leute ich habe ein Problem mit einem Div Layer. Und zwar handelt es sich um die id: player. Ich habe zwar margin-top:11px; eingegeben aber es bewegt sich vom umliegenden objekt in Firefox nicht weg. Im Internet Explorer wird alles passend angezeigt. Könnt ihr mir helfen?
Hier der Code:
[MOD: Wiederhergestellt]
Hier der Code:
Code:
<html> <head> <title>Meine Seite</title> <link rel="shortcut icon" href="esl.ico"> <style type="text/css" media="screen"> body { margin:0; font-family:'Verdana',sans-serif; background-color:#ffffff; background-image:url(images/background.jpg); } html { overflow:scroll; overflow-x:hidden; } #topbar { width:100%; height:24px; background:#222222; background-image:url(images/topbarbg.gif); } #playerbackground { position:relative; width:682px; height:502px; margin-left:159px; margin-top:89px; background:#222222; background-image:url(images/playerbg.gif); } #player { position:relative; width:640px; height:480px; margin-left:21px; margin-top:11px; background:#222222; } #content { position:absolute; left:50%; width:1000px; height:776px; margin-left:-500px; background:#222222; background-image:url(images/contentbg.gif); top: 24px; } </style> </head> <body> <div id="topbar"> </div> <div id="content"> <div id="playerbackground"> <div id="player"> </div> </div> </div> </body> </html>
[MOD: Wiederhergestellt]
Kommentar