Hi,
Jetzt möchte ich, dass dieses element so groß wie das größte der drei beinhalteten elemente ist.
was hast Du unternommen, um dieses Standardverhalten zu unterbinden?
Cheatah
gute frage... css:
#container {
position: relative;
width: 100%;
height: auto;
margin-bottom: 0px;
}
#left_col {
width: 130px;
height:auto;
position: absolute;
left: 0px;
top: 0px;
margin-bottom: 0px;
}
#page_content {
margin-right: 140px;
margin-left: 140px;
height: auto;
}
#right_col {
width: 130px;
position: absolute;
right: 0px;
top: 0px;
height: auto;
}
#footer {
clear:left;
margin-top:1em;
background:#efefef;
text-align:center;
padding:10px;}