Du bist nicht angemeldet.

#1 Re: Allgemein » 3 Images in einer Zeile? » 04.01.2006 11:35

Also: ich hab da mal rumprobiert:
Lasse am Besten das postition: absolute weg. Dann funzt das ganze im IE [6] und Firefox [1.5].
Der Code sieht dann also so aus:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>New Document</title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <style>
#leftgif {
float: left;
height: 60px;
width: 60px;
left: 5px;
bottom: 0px;
background: url(images/leftgif.gif);
background-repeat: no-repeat;

}
#rightgif {
float: right;
height: 60px;
width: 60px;
right: 5px;
bottom: 0px;
background: url(images/rightgif.gif);
background-repeat: no-repeat;
}
#banner {
text-align: center;
height: 60px;
width: 490px;
background: url(images/leftgif.gif) 0px 0px;
background-repeat: no-repeat;
position: relative;
right: 0px;
left: 255px;
bottom: 0px;
}  
    </style>
  </head>
  <body>
<div id="leftgif"> </div>
<div id="rightgif"> </div>
<div id="banner"> </div>
  </body>
</html>

So hat es bei mir lokal am Besten geklappt.