0

我的页脚没有在我的 Windows 移动应用程序中修复。

代码:.newFooter {底部:0; 位置:绝对!重要;宽度:100%;}

注意:此代码适用于 Android、BB、Ios。

任何人都可以帮助我一些好的解决方案。谢谢。

4

1 回答 1

0

解决方案 :

/* Start - Used to display the footer at the bottom of the page */
html,
body {
margin:0;padding:0;height:100%;
}

#container {
min-height:100%;position:relative;
}

#header {
}

#content {
padding-bottom:100px; /* Height of the footer element */
}

#footer {
width:100%;position:absolute;bottom:0;left:0;
}
/* End - Used to display the footer at the bottom of the page */
于 2012-09-12T10:34:52.777 回答