android浏览器和firefox的css

android浏览器和firefox的css,android,css,firefox,browser,Android,Css,Firefox,Browser,我正在使用Wordpress响应主题,希望有一个固定的背景 background-repeat: no-repeat; background-position: top center; background-attachment: fixed; 我发现,如果我将背景更改为 background-repeat: repeat; background-position: top center; background-attachment: scroll; 加 html, body { he

我正在使用Wordpress响应主题,希望有一个固定的背景

background-repeat: no-repeat;
background-position: top center; 
background-attachment: fixed;
我发现,如果我将背景更改为

background-repeat: repeat;
background-position: top center;
background-attachment: scroll;  

html, body {
height: 100%;
}
这允许查看主体内容,但在Firefox(android)上,您无法向下滚动页面以查看所有内容。在其他浏览器上,滚动速度较慢。 有没有一种方法可以使用固定的背景,在所有(大多数)手机浏览器上显示ok? 谢谢。

您是否尝试过:

编写一段简短的代码,以了解更多下一步的内容,包括主体html结构及其CSS

html {
  height:100%;
}
body {
  min-height:100%;
}