我的(妻子)页面在低分辨率上看起来很奇怪

时间:2011-11-26 15:39:29

标签: css

在宽度低于而不是900px的分辨率下,我的页面宽度为900px看起来没问题我有点麻烦。这包括智能手机等移动设备。看起来我在页面上放大了,但没有滚动或缩小的能力。我的页面包装器被定义为以屏幕为中心。这是包装器的CSS

#wrapper{
position: absolute;
left: 50%;
margin-left:-450px;
width: 900px;
min-height: 100%;
height: auto;
}

2 个答案:

答案 0 :(得分:0)

试试这个:

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

答案 1 :(得分:0)

我会这样做:

body {
    min-width: 900px;
}

还可以解决智能手机以外设备上的问题。

-edit -

要解决初始缩放问题,请添加&lt; meta&gt;对于视口(https://developer.mozilla.org/en/Mobile/Viewport_meta_tag):

<meta name="viewport" content="width=1000">