我正在开发一个移动应用程序,并且我有一个固定的页脚菜单。
<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; }
我在安卓设备上测试过。问题是,当我更改设备方向时,菜单 ul 的边距:自动在我单击另一个菜单项之前不起作用。谢谢!
我通过更改 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; }