Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试设计一个 iphone 应用程序,并且计划使用 PhoneGap。我正在考虑在窗口底部添加的菜单栏。我应该修复定位还是应该使用绝对或相对或什么?谢谢 0_0
使用position: fixed;andbottom: 0;这样,元素将始终位于屏幕底部,与您查看网页的设备无关。
position: fixed;
bottom: 0;
不要修复它...
因为如果您修复它,您将失去 Iphone 5 和其他设备之间的最佳匹配视图。
选择从底部起 10% 的方式。
因此,这样您就可以最适合所有设备。