body {
background-image: url("image.png" );
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top left;
}
ou (plus court):
body {
background: url("image.png" ) no-repeat fixed top left;
}
Fixe le fond en haut à gauche (non répété).
Ca peut s'appliquer à <div>, un <table>, etc..