y a plusieurs facon de faire...
depuis css3 tu peux appliquer plusieur sbackground.. exemple:
background-image: url(images/bg1.jpg), url(images/bg2.jpg);
sinon tu peux mettre un background à l'html et un autre au body:
html {
background: url(images/bg1.png);
}
body {
background: url(images/bgt2.png);
}
Ca marche dans tous les navigateurs récents. 