0

Chrome 在我网站的所有页面上为我的元素添加了一个高度。它在 Firefox 中不这样做。无论页面的高度如何,它总是将 height: 958px 添加到 body 元素。这是 chrome 浏览器读取它的方式:

<body class="other" style="height: 958px">

然而,在 Firefox 中,它不会将高度附加到正文,它只是读取:

<body class="other">

我的CSS如下:

body {
  padding-top: 60px;
}

body.other {
  background-image: url( "/assets/bg_grey_noise_more.png" );
}

我将 Twitter Bootstrap 用于我的 UI 框架。

4

1 回答 1

0

看起来它是由 hideAddressBar() 函数添加的。

于 2012-07-12T02:19:21.143 回答