1100px以上の画面サイズ用にCSSを書きました。ctrl と +(プラス) 記号を押してズームすると、ページの中央のコンテナーが折り返されません。突然壊れます。
HTML:
<div id="outer_footer_bottom">
    <div class="center">
        blabla balaa blabalblabla
    </div>
</div>
CSS:
<style>
    #outer_footer_bottom{
        width: 100%;
        float: left;
        background: #8ac53f;
        height: 26px;
        padding: 16px 0 0 0;
        text-align: center;
        color: #fff;
        overflow-x: auto;
    }
    .center {
        width: 1000px;
        margin: 0 auto;
    }
</style>