0

我尝试了很多东西,但直到现在,什么都没有发生。我的页脚不会填满页面(水平),但会卡在页面中间的某个地方。(仅在 Ipad 和 Iphone 上。)元标记不起作用,而不是 min-width:100%, min-width:1024px; 都不适合我。

固定定位的页脚是没有选择的......(当编辑更多文本时,页脚必须与内容一起流动。)

这是我的页脚 CSS 代码:

#footer_content{
        min-height:200px;
        min-width:1024px;
        float:left;
        background-color:#29809E;
        bottom:0;
    }
4

3 回答 3

0

做这个:

#footer_content{
        min-height:200px;
        min-width:1024px;
        float:left;
        background-color:#29809E;
        bottom:0;
    }

这个:

#footer_content{
        min-height:200px;
        width:100%;
        min-width:1024px;
        float:left;
        background-color:#29809E;
        bottom:0;
        display: block;
    }

然后在关闭页脚 div 之后添加一个 clear: both。

于 2012-04-19T13:53:05.690 回答
0

为表格视图和主视图设置相同的背景颜色

于 2012-04-19T12:30:05.427 回答
0

尝试将视口设置为 1.0

进一步明确:两者都可能有帮助

这里还有一些关于如何使用视口的很好的解释......

iPad 细节:http ://www.allenpike.com/2010/choosing-a-viewport-for-ipad-sites/

通用” https://developer.mozilla.org/en/Mobile/Viewport_meta_tag

于 2012-04-19T12:32:25.330 回答