0

我真的很感谢这个客户端的任何和所有帮助,因为我已经查看了源代码并且无法弄清楚为什么我正在开发的这个网页中只显示其中的任何内容。

这是网址:the-irf.com/mob

此外,如果它有帮助,我注意到这发生在 Android 浏览器中。

提前致谢!

4

1 回答 1

1

好的,我使用 Moto Droid 用户代理复制了它。问题是您的样式代码:

<style type="text/css">footer nav{ background:transparent url(assets/images/nav.png) no-repeat center center; } @media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5){ footer nav{ background:transparent url(assets/images/retina/1.5/nav@1.5x.png) no-repeat center center; background-size:100%; } } @media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2){ footer nav{ background:transparent url(assets/images/retina/2/nav@2x.png) no-repeat center center; } }</style><style type="text/css">.contentBox{ background:#ff0000; }

这有点乱,我不确定你在做什么,但是删除这个代码然后它就可以工作了。我猜里面的东西不想在早期版本的Android上玩得很好。

另请注意,我看到您的 html 代码存在语法问题,您缺少>.nav

于 2012-07-16T17:58:55.383 回答