Windows mobileでモバイルアプリケーションをテストしていましたが、フッター部分に問題がありました。問題はフッターの修正に関するものです。内容をスクロールするとフッターも表示されますが、IEを含むすべてのブラウザとWindows版を除くすべての携帯電話でフッターが固定されています。
私が与えたIEについては、コードを参照してください。
* html #footer {
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}
編集:
html, body {height: 100%;}
#wrapper {min-height: 100%;}
#footer {
position:fixed; z-index:999;
width:100%;
bottom:-20px;
margin-top: -72px; /* negative value of footer height */
margin-top: 0px !ie; /* for IE */
height: 92px;
clear:both; text-align:center;
background:url(../../) repeat-x #115c9c;
}