Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Las Propiedades shorthand

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;
}