X
XSxecutor
hey leude...
wäre sehr nett wenn mir jemand erklären könnte, wieso diese beiden tabellen-felder mit den id's "left_bottom" und "right_bottom" die von css vorgeschriebene höhe nicht annehmen...
ich wollte es eigentlich so einrichten, dass die zellen "left_top" und "right_top" in der höhe variabel sind... wäre sehr nett
wäre sehr nett wenn mir jemand erklären könnte, wieso diese beiden tabellen-felder mit den id's "left_bottom" und "right_bottom" die von css vorgeschriebene höhe nicht annehmen...
ich wollte es eigentlich so einrichten, dass die zellen "left_top" und "right_top" in der höhe variabel sind... wäre sehr nett

HTML:
<html>
<head>
<style type="text/css">
<!--
#left_top
{
background:url(images/layout/mein_bild1.png) repeat-y;
width:20px;
}
#menue_body_center
{
background:url(images/layout/mein_bild2.png) no-repeat #c8c8c8 bottom;
width:220px;
vertical-align:top;
}
#menue_content
{
margin:0 0 0 0;
padding-top:0px;
padding-bottom:20px;
padding-left:3px;
padding-right:3px;
}
#right_top
{
background:url(images/layout/mein_bild3.png) repeat-y;
width:15px;
}
#left_bottom
{
background:url(images/layout/mein_bild4.png) no-repeat bottom;
width:20px;
height:20px;
}
#right_bottom
{
background:url(images/layout/mein_bild5.png) no-repeat bottom;
width:15px;
height:20px;
}
-->
</style>
</head>
<body>
<table width="255" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="left_top"> </td>
<td rowspan="2" id="content">
<div id="menue_content">
<p align="justify">Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. Inhalt. </p>
<p>Beispiel. etc.</p></div>
</td>
<td id="right_top"> </td>
</tr>
<tr>
<td id="left_bottom"> </td>
<td id="right_bottom"> </td>
</tr>
</table>
</body>
</html>