Hallo Gemeinde,
ich habe eine Tabelle mit zwei Zeilen und jeweils nur einer Spalte. In der ersten sind drei Divs positioniert. Jedoch wird die Tabelle jetzt nach unten hin unnötig lang gezogen. Ich habe schon versucht die Zeilenhöhe der ersten Zeile mit CSS zu definieren, brachte aber nichts. Habe momentan keine Idee wo der Fehler liegen könnte. Hier mal mein Code. Ich würde mich über Hilfe sehr freuen.
<style type="text/css">
}
body,td,th {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-image: url(bilder/hintergrund.jpg);
}
#apDiv1 {
position:relative;
left:0px;
top:0px;
width:250px;
height:290px;
z-index:3;
background-color: #009;
}
#apDiv2 {
position:relative;
left:250px;
top:-288px;
width:740px;
height:32px;
z-index:1;
}
#apDiv3 {
position:relative;
left:215px;
top:-285px;
width:700px;
height:330px;
z-index:2;
background-color: #990;
}
</style>
</head>
<body>
<table width="990" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="0" align="left" valign="top" style="height: 325px;">
<div id="apDiv1"></div>
<div id="apDiv2"></div>
<div id="apDiv3"></div></td>
</tr>
<tr>
<td align="left">test</td>
</tr>
</table>
Gruß
Stefan