-1

Is there anybody who know the problem ?

css:

    footer {
    width:100%;
    height:auto;
    background:black;
}
footer .wrapper {
    width:1000px;
    height:auto;
    margin:0 auto;
    color:grey;
}
footer .wrapper .footer_column {
    width:333.3px;
    height:auto;
    float:left;
}

HTML

<footer>
    <div class="wrapper">
        <div class="footer_column">
            Content
        </div>
        <div class="footer_column">
            Content
        </div>
        <div class="footer_column">
            Content
        </div>
    </div>
</footer>

Thanks in advance

http://jsfiddle.net/cWCFV/

MrSkippy
  • 348
  • 4
  • 17

1 Answers1

1

Put overflow: auto; in your footer div.

footer {
    width:100%;
    height:auto;
    background-color:red;
    overflow: auto;
}
berentrom
  • 505
  • 1
  • 5
  • 12