Again me with my divs =(. I have this:
<div id="header"></div>
<div id="body">
  <div id="..."></div>
  <div id="..."></div>
  <div id="content"></div>
</div>
<div id="footer"></div>
and css:
#body { width: 100%; margin 0 auto; }
#content {   position: absolute;   height: 200px; width: 100%; }
#footer {   height: 63px;   clear:both; }
Now result: content div with much text and footer under text.
How can I make my footer under all content-area?