11
Sorry, hatte Rechner dummerweise ausgemacht ;)
Hier, der Rechner ist immer online.
http://zwog.mine.nu/ie6.htm
Hier, der Rechner ist immer online.
http://zwog.mine.nu/ie6.htm
für mich völlig unbegreiflich, denn das gleiche konstrukt funktioniert ja einwandfrei im zweiten container, der die unteren drei kästen enthält!
<div id="container2">
<div id="logo1">
</div>
<div id="balkennavi">
</div>
<div id="balken">
<img id="mainlogo" src="pic.gif" alt="logo" />
</div>
<div class="clear-left">
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
#bigpic {
float:right;
width: 389px;
height: 420px;
}
Ja, das könnte ich, allerdings darf sich das Bild beim verkleinern nicht unter die drei Kästen schieben.Könntest du bigpic wie das obere Bild mt float:right positonieren, statt absolut? Damit käme der IE ja zurecht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<style>
body {
padding: 0px;
margin: 0px;
}
.clear-left {
clear: left;
}
.clear-right {
clear: right;
}
#container {
padding: 15px;
}
#container2 {
position: relative;
margin-top: 15px;
}
#logo1 {
float: left;
height: 88px;
width: 88px;
background-color: #9b8f88;
margin-right: 15px;
}
#balkennavi {
float: left;
height: 88px;
width: 88px;
background-color:#372011;
border: 1px solid red;
}
html>body #balken { /* für alle richtigen browser */
margin-left: 191px;
height: 88px;
background-color:#372011;
}
#balken { /* für den internet exploiter */
position: relative;
left: -3px;
height: 88px;
background-color:#372011;
}
#mainlogo {
float: right;
}
#container3 {
position: relative;
margin-top: 15px;
}
#logo2 {
float: left;
height: 88px;
width: 88px;
background-color: #372011;
}
#logo3 {
float: left;
margin-left: 15px;
height: 88px;
width: 88px;
background-color: #d7d2cf;
}
#logo4 {
float: left;
margin-left: 15px;
height: 88px;
width: 88px;
background-color: #736358;
}
#bigpic { /* für den internet exploiter */
overflow: visible;
position: absolute;
right: 15px;
top: 0px;
width: 389px;
height: 420px;
}
html>body #bigpic { /* für alle richtigen browser */
overflow: visible;
position: absolute;
right: 0px;
top: 0px;
width: 389px;
height: 420px;
}
</style>
<body>
<div id="container">
<div id="container2">
<div id="logo1">
</div>
<div id="balkennavi">
</div>
<div id="balken">
<img id="mainlogo" src="pic.gif" alt="logo" />
</div>
<div class="clear-left">
</div>
</div>
<div id="container3">
<div id="logo2">
</div>
<div id="logo3">
</div>
<div id="logo4">
</div>
<div id="bigpic">
<img src="bigpic.gif" alt="rotating"/>
<div class="clear-right">
</div>
</div>
<div class="clear-left">
</div>
</div>
</div>
</body>
Thema | Autor | Forum | Beiträge | Letzter Beitrag |
---|---|---|---|---|
unterschiedliche Abstände bei float IE/Opera/Firefox | Hasabajan | HTML und CSS | 4 | 31.10.2005 15:14 |