CSS

  • Proprietà background nei CSS

    Ecco le principali proprietà per gestire lo sfondo da un foglio di stile CSS: background-color background-image background-repeat background-attachment background-position /* BACKGROUND-COLORDefinisce il colore dello sfondo di un dato elemento */body {background-color: white; }body {background-color:#FFFFFF; }body {background-color: rgb(0, 0, 0); } /* BACKGROUND-IMAGEDefinisce il percorso dell'immagine da usare come sfondo di un elemento */body {background-image: url(sfondo.gif); }body {background-image: url(http:\\.....gif); } /* BACKGROUND-REPEATQuesta proprietà definisce la direzione in cui l'immagine di sfondo viene ripetuta */selettore {background-repeat: <valore>; }body { background-image: url(sfondo.gif);background-repeat: repeat; }div { background-image:...