Las propiedades de tipo
"shorthand" son propiedades de CSS que permiten establecer de forma
simultánea el valor de varias propiedades diferentes pero relacionadas.
body{
background: url("bg.gif");
background-color: #fff;
background-repeat: repeat-x;
}
Podremos escribirlo
body {
background: url("bg.gif") #fff
repeat-x;
}