Forum Moderators: not2easy
here is an example <snip>
I want the background image to be visible outside of the wrapper div, until now I have been using nested divs with negative margins, but that solution is buggy... I think. Is there any other option?
Have a look at the background image <snip> it contains spatter and the spatter has to be visible outside of the div tags viewport.
[edited by: engine at 9:02 am (utc) on Sep. 23, 2008]
[edit reason] Please see CSS Charter [/edit]
<html>
<head>
<style type="text/css">
#wrapper {
background-image: url(bgBannerSpace.gif);
background-repeat: no-repeat;
background-position: -20px -20px;
width: 350px;
height: 200px;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="wrapper">Min wrapper med et stort baggrundsbillede</div>
</body>
</html>