Reading Time: < 1 minute Proviamo ad inserire una Immagine di sfondo fissa allo scroll della pagina in questo modo attraverso i css body{ background-image: url(‘image’); background-attachment: fixed; background-repeat: no-repeat; }
Tag: fissa
Centratura immagine di sfondo con i css
Reading Time: < 1 minute body { background: url(immagine.gif); background-repeat: no-repeat; background-position: Center; } oppure body { background: url(../graph/sfondo.png) no-repeat center top; }