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.
完成了一个小网页并为其提供了基本布局后,我决定使用移动浏览器测试它的外观。所以我用模拟器安装了Android SDK,结果页面上的几个元素看起来非常小。默认情况下,我估计大约 80% 的页面当前是空白背景。但是,当我放大时,它看起来很棒,因为width:height比例与手机的屏幕相匹配。也就是说,我宁愿保持页面不变,它只需要作为一个整体更大。
width:height
有没有办法让我的页面默认放大显示?
试试这个:
<meta name="viewport" content="width=device-width">
对于 1:1 的初始比例,添加:
<meta name="viewport" content="initial-scale=1.0">