Background ajustable al navegador amb CSS3

Si el que necessiteu és que la vostra imatge de fons s’ajusti al taman de la finestra del navegador, haureu de posar aquest codi al css:

body {
   background-image: url("ruta_imatge");
   background-attachment: fixed;
   background-size: cover;
   background-repeat: no-repeat;
}

Així de fàcil!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.