Hallo,
habe folgendes Problem bei folgender Struktur
<div id="content">
<div id="links">
<div class="box">
<h3 class="menue_title">
Rezepte
</h3>
<ul class="menue">
<li> Käsesahnetorte</li>
<li> Carrot Cakes</li>
<li> Donauwelle</li>
</ul>
</div>
</div>
<div id="inhalt">
<!--Inhaltsseite wird geladen -->
<?php include('rezepte.php'); ?>
</div>
</div>
<div id="footer"></div>
Hier der relevante CSS Teil
div#header {
background: url(../images/head.jpg) no-repeat;
height: 312px;
}
#content {
background: url(../images/stripe.jpg) repeat-y;
padding:20px 30px 0 30px ;
}
div#links {
float: left;
width:175px;
}
/*Der Inhalt*/
div#inhalt {
margin-left: 170px;
}
div#footer {
clear: left;
background: url(../images/footer.jpg) repeat-x;
height: 21px;
}
Problem: Wenn im DIV inhalt etwas steht wird der content Hintergrund angezeigt und "aufgespannt", wenn jedoch im im DIV inhalt nichts steht und nur im DIV box etwas steht wird kein Hintergrund von DIV content angezeigt! Warum?