0

我在移动设备上的一页有问题

本网站的某些子页面被部分放大是事实。

有趣的是,页面的一部分在源代码中被放大了。

截屏

不幸的是,它只做一些页面。

网站是:www.kitelementshop.com

在手机上显示不佳的页面为: link1 link2

非常有趣的是,这两种产品的显示方式不同,并且在同一个模板上。 烂节目 好节目

终于通过切换视口解决了,但只是掩盖了未解决的问题

任何想法?谢谢

4

1 回答 1

-1

You are missing a viewport meta tag:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

With that the phone knows which scale it needs to start with and computes the font-sizes accordingly.

If you try inspecting it without the viewport meta tag you can see that the font is computed to 39px! With the viewport tag its calculated to 12px - the value that you have put in your CSS.

于 2014-01-30T09:40:50.040 回答