moin moin
Habe folgendes Problem - möchte einen Container "Inhalt" im Hintergrund haben und darüber dann die Container "Ueberschrift" und "Marken" legen - so wie ich es jetzt habe funktioniert es nicht
cssdatei
Habe folgendes Problem - möchte einen Container "Inhalt" im Hintergrund haben und darüber dann die Container "Ueberschrift" und "Marken" legen - so wie ich es jetzt habe funktioniert es nicht
PHP-Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<html>
<head>
<title>AUTO</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="css/auto.css" media="screen" />
</head>
<body background="css/hintergrund.jpg">
<div id="inhalt">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td width="900"><table width="900" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20" background="css/hintergrund_links.jpg"> </td>
<td height="840"> </td>
<td width="20" background="css/hintergrund_rechts.jpg"> </td>
</tr>
</table></td>
<td> </td>
</tr>
</table>
</div>
<div id="ueberschrift"><img src="Bilder/finanzierungsangebot.gif"></div>
<div id="marken"><img src="Bilder/Logos/marken.jpg"></div>
</body>
</html>
PHP-Code:
.ueberschrift{ width:159px; height:156px;position: absolute;
margin-left: 50%;
left:-360px;
top: 345px ;
z-index:3;
}
.marken{ width:87px; height:451px;position: absolute;
margin-left: 50%;
left:-360px;
top: 345px ;
z-index:2;
}
.inhalt{ width:87px; height:451px;position: absolute;
margin-left: 50%;
left:-360px;
top: 345px ;
z-index:1;
}
Kommentar