hallo zusammen!
der border sowie der inhalt des iframes des news-div's werden an der stelle, an der sie über dem iframe des flyer-div's liegen, um ein paar pixel nach links verschoben. weiss jemand aus welchem grund dies so ist? in ie und opera tritt dieses problem nicht auf.
gruss nep@l
HTML
<html>
<head>
<style type="text/css">
<!--
#main{
background: #180700;
position: absolute;
width: 990px;
height: 710px;
left: 50%;
margin-left: -495px;
z-index:1;
}
#news{
position: absolute;
width: 500px;
height: 500px;
left: 62%;
top: 3%;
margin-left: -250px;
z-index:2;
}
#gallery{
position: absolute;
width: 500px;
height: 500px;
left: 55%;
top: 3%;
margin-left: -250px;
z-index:-1;
}
#flyer{
position: absolute;
width: 500px;
height: 500px;
left: 61%;
top: 20%;
margin-left: -250px;
z-index:-1;
}
-->
</style>
</head>
<body bgcolor=#180700>
<div id="main">
</div>
<div id="news">
<iframe src="#" style="border:3px solid #F35A02;" width="519" height="591" frameborder="1">
</iframe></div>
<div id="gallery">
<iframe src="#" style="border:3px solid #F35A02;" width="684" height="684" frameborder="1">
</iframe></div>
<div id="flyer">
<iframe src="#" width="600" height="319" frameborder="0">
</iframe></div>
</body>
</html>
Alles anzeigen