I need to add background image to BrowserField.
myBrowserField.displayContent(getText(),"text/html; charset=utf-8","http://localhost");
getText() load bytes from local file about_us.html
about_us.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
background: #F2F4F4 url("bgorn.png") repeat-y; // bgorn.png in same folder as about_au.html but not work
font-size: 75%;
line-height: 62.5%;
font-family: Arial;
}
</style>
</head>
<body>
//some text here
</body>
</html>
my question is how can I add image to background ?
background: #F2F4F4 url("bgorn.png") repeat-y; // bgorn.png in same folder as about_au.html but not work
UPDATE: Solution is: background: #F2F4F4 url("local:///bgorn.png");