My CSS is designed for screen sizes larger than 1100 pixels. However, when I zoom in using ctrl and the plus sign, the center container on the page fails to wrap properly and suddenly breaks.
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>