Hi,
wie funktioniert so etwas denn in einem <div>-Element?
Da habe ich einen ähnlichen Effekt, z. B. geht es im Firefox, im IE leider nicht. (Das Fixieren des Hintergrundbildes.)
Hier eine Beispiel-Seite:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Background-Test</title>
<style type="text/css">
#test {
background-color: yellow;
background-image: url(images/hintergrund.jpg);
background-attachment:fixed;
background-repeat: no-repeat;
background-position: 150px 100px;
}
</style>
</head>
<body>
<div id="test">
<p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p><p>Content.</p>
</div>
</body>
</html>