0

我一直在痛苦地尝试在移动设备(Andropid OS ICS 4.2.2)中将网站居中对齐,但它仍然卡在屏幕的左上角,略微被剪裁。我只尝试了 jQuery 和 CSS ......结果相同。在台式电脑上工作正常。

这就是我现在所拥有的 - HTML:

<body>
  <div id="wrapper">
    ...
  </div>
</body>

CSS:

body {
  overflow: hidden;
}

#wrapper {
  z-index: 1;
  width: 1370px; height: 910px;
  position: absolute;
  top: 50%;
  margin-top: -455px; /* half of #wrapper height */
  left: 50%;
  margin-left: -685px; /* half of #wrapper width */
}

在线结果:链接

在此处输入图像描述

顺便说一句,我尝试的 jQuery 是这样的:

$(window).resize(function(){
  $('#wrapper').css({
    left: ($(window).width() - $('#wrapper').outerWidth())/2,
    top: ($(window).height() - $('#wrapper').outerHeight())/2
    });
});

$(window).resize(); // To initially run the function

有任何想法吗?

>>>>> 更新 1 - @Moob 建议 <<<<<<<<<<<<<<<<<<<<<<

#wrapper {
    z-index: 1;
    position: absolute;
    width: 1370px; height: 910px;
    top: 0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
}

仍然裁剪顶部,但不是左侧。不居中。

在此处输入图像描述

4

1 回答 1

0

<div id="wrapper">...不能用 关闭</wrapper>。您必须关闭</div>

您可以尝试像这样将元素居中:

#wrapper {
    z-index: 1;
    position: absolute;
    width: 1370px; height: 910px;
    top: 0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
}

居中 div 演示

...但我怀疑手机的分辨率小于您的尺寸#wrapper

于 2013-09-27T16:25:00.340 回答