视口宽度不适用于 Android
我已经进行了很多搜索,以让我的网站拉伸 100% 的宽度,并且它有效,但它只是随机损坏。该网站在 iPhone 上可以正常运行,但在 Android 手机上却存在问题。奇怪的是,该站点延伸得比设备宽度更远。
我正在使用 现在该网站位于 mallsear.ch
有人有想法吗? 谢谢!
编辑:我在 CSS 中也有这个:
html{
color: white;
background: #1f1f1f;
font-family: Futura;
height:100%;
width: 100%;
max-width:800px;
margin-left:auto;
margin-right:auto;
}
I have searched a lot for making my site stretching 100% of the width and it worked but it just broke randomly. The site works find on the iPhone but it has issues with android phones. Oddly, the site extends further than the device width.
I am using <meta name="viewport" content="width=device-width;" />
right now and the site is at mallsear.ch
Anyone have an idea?
Thanks!
Edit: I have this in CSS too:
html{
color: white;
background: #1f1f1f;
font-family: Futura;
height:100%;
width: 100%;
max-width:800px;
margin-left:auto;
margin-right:auto;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以我终于找到了问题所在。 Facebook 连接中的
拉伸了该网站,一旦我删除它,它就被修复了。
希望这可以帮助别人!
So I finally found the problem. The
<div id="fb-root"></div>
in the Facebook connect stretched out the site and once I deleted it, it was fixed.Hope this can help someone!