You've really answered your own question. Yes but then there will be bleed through if different sized images are involved.
However, if your purpose is to make it appear as though a background image is showing through, that can often be done, but not always.
Say you have a background image for the body, say it's mybg.jpg. You can then put this in the style section:
Code:
#canvas0_0, #canvas0_1 {
background-image: url(mybg.jpg);
}
But it probably won't line up with the image for the body. So you can use the the background-position property, example:
Code:
#canvas0_0, #canvas0_1 {
background-image: url(mybg.jpg);
background-position: 20px 100px;
}
20px is how far from the left you want the background image to start, 200px is how far from the top. Negative values may be used. Trial and error may be required to get the required values. If the layout is fluid, there may be no values that will work in all window sizes.
Setting the html and body elements' margin and padding to 0 will help make it more cross browser, that's assuming the layout is amenable in the first place.
If you want more help with it you would have to put up a demo of the page somewhere I can see it in action.
Bookmarks