ich habe ein div als mainrahmen sozusagen und dem gebe ich height: auto; , nun lege ich ein div innerhalb des mainrahmens und gebe ihm width: 10em; . Irgendwie wenn man hintergrundfarben verwendet klappt es nicht.
<div class="rahmen">
<div class="left">
</div>
</div>
* {margin: 0; padding: 0;}
a:link, a:visited, a:hover, a:active {
font-family: calibri;
font-weight: bold;
text-decoration: none;
}
a:hover {font-family: calibri; font-weight: bold; text-
decoration: underline;}
.rahmen {
width: 100%;
height: auto;
margin: auto;
background-color: #000000;
}
.left {
width: 222px;
height: 10em;
float: left;
background-color: #c0c0c0;
}