-5

我知道除此之外还有很多其他问题,但现在我只需要知道为什么主页上的背景没有显示在 iPhone/iPad 上?

该网站是 baardk.com。

4

1 回答 1

1

background您在标签上使用 CSS img,我不确定 iOS 是否支持。

我很确定会起作用的一种解决方案是使用以下应用于包装a标签的 CSS:

div.pure-g-r a{
 display: block;
 width: 100%;
 height: 100%;
}

div.gano-box a{
 background: -default image here-;
}
div.gano-box a:hover{
 background: -hover image here-;
}
/*... for all your other boxes*/

另一个建议:不如为您的彩色背景使用 HTML 颜色代码。这将提高加载速度和性能。

希望这可以帮助!

于 2013-06-08T21:44:37.213 回答