0

我正在开发的这个网站在 Firefox 和 IE 中运行良好,但在 chrome 中它重叠。我一直在试图弄清楚问题是什么,有人可以帮忙吗?

http://c2cdev.com/hocoa

这可能是一个css问题吗,我一遍又一遍地查看代码。

谢谢

4

1 回答 1

0

这就是为什么。

@media screen and (-webkit-min-device-pixel-ratio:0) {
  .homepage-content {
    margin-top:125px;
  }
}

编辑:

它正在正确渲染。

media="screen"
.header-wrapper, .header-wrapper-inner {
background-color: #6da000;
background-image: url(images/pattern/transparent-grid3.png);
background-repeat: repeat;
background-position: top;
height: 504px;
}

CSS 说标题只有504px高。homepage-content正在呈现在标题下方的内容之后。然后,您125px在顶部边距上添加还不够。

于 2013-05-24T18:04:45.250 回答