我固定位置绝对以全屏显示我的图像。但是在黑莓中,图像没有完全显示,它被剪掉了。也就是说,它是页面的一半......这是 ios、Windows 和 android 的通用代码。这个代码在除了黑莓之外的所有 3 个平台上都可以正常工作。如果我删除了位置:绝对它在黑莓中运行良好,但它会影响其他 3 个平台。即在其他 3 个平台中剪切的图像......这是我的代码..
HTML:
<div class="imageBg" id="">
<div class="ui-grid-a">
<div class="ui-block-a">
<span>Block a</span>
<div>
<div class="ui-block-b">
<span>Block b</span>
<div>
</div>
CSS:
.imageBg {background: url(../images/texture_bg.png) repeat;width:100%;position: absolute;height:100%;}
如果有任何其他方式可以将我的图像显示为页面的全屏..