我为大于 1100 像素的屏幕尺寸编写了 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>