Le proprietà color e background sono fondamentali per definire l'aspetto visivo degli elementi.
Proprietà color
Definisce il colore del testo:
p {
color: #333333; /* Esadecimale */
color: rgb(51,51,51); /* RGB */
color: blue; /* Nome colore */
}Proprietà background
.box {
background-color: #f5f5f5;
background-image: url("immagine.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}Shorthand: background: #f5f5f5 url("img.jpg") no-repeat center/cover;