私はモバイル アプリケーションに取り組んでおり、固定フッター メニューを使用しています。
<div id='footer'>
<ul class='menu'>
<li>menu1</li>
<li>menu2</li>
</ul>
</div>
#footer { height:99px; background:url(../images/black2.png)repeat-x; border-top: 1px solid black; position:fixed;bottom:0;width:100%;}
.menu { max-width:640px; margin:auto; }
Android デバイスでテストしました。問題は、デバイスの向きを変更すると、別のメニュー項目をクリックするまで、メニュー ul の margin:auto が機能しないことです。ありがとうございました!
CSSを変更することでこれを解決しました。
#footer { height:99px; background:url(../images/black2.png)repeat-x; border-top: 1px solid black; position:fixed;bottom:0;width:100%; text-align:center;}
.menu {width:100%; max-width:640px; display:inline-block; }