我的页脚未修复我的Windows移动应用程序。
代码: .newFooter {bottom:0;位置:绝对!重要;宽度:100%;}
注意:此代码适用于Android,BB,Ios。
任何人都可以帮我解决一些好的解决方案。谢谢。
答案 0 :(得分: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 */