Zafixované pozadie

CSS
<style type="text/css">  
<!--  
body selektor
{ background-image:url("favicon.gif"); obrázok na pozadí
background-position: 98% 2%; umiestnenie obrázku vpravo hore
background-repeat: no-repeat; bez opakovania
background-attachment: fixed} obrázok je zafixovaný na pozadí
-->  
</style>  
Skrátený
zápis
<style type="text/css">
<!--
body
{ background: url("favicon.gif") 98% 2% no-repeat fixed}
-->
</style>