UIWebView背景图片:url('image.png')不起作用?

时间:2012-11-15 16:05:08

标签: html objective-c uiwebview

我正在尝试模仿Mobile Safari的行为并创建一个StandardError.html文件,以便在无法加载时显示webview上的错误图像和一些文本。我在使用Background-Image:url('image.png')css时无法显示图像,但是在使用div在html中完成所有操作时都没有。我不确定为什么一个有效,另一个失败,任何帮助都会非常感激!

另一方面,使用html将图像置于中心的任何帮助都会很棒!

谢谢!

编辑:HTML到中心网址:

<div name="backgroundImage"> <center> <img src="image.png"/> </center> </div>

1 个答案:

答案 0 :(得分:0)

这是我在webview中加载的HTML页面中的示例,它应该可以作为完成任务的良好指南。我正在使用CSS来定位我的元素,并使用HTML加载它。 css将图像水平居中在宽度为320px(iphone宽度)的屏幕上

// in css block
#product { 
    margin: 0 auto;
    position:relative; 
    width: 320px;
}

in html block
<div id="container">
    <div id="product"><img src="products-product-in-library.jpg" /></div>
</div>