tamaño imagen color css background shorthand

css - imagen - header background image html



Es{background: 0;} CSS válido? (2)

Sí, el cero se interpretará como la posición de fondo horizontal. Las otras propiedades de fondo están configuradas con los valores predeterminados, por lo que terminas con lo mismo que:

background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 center; background-color: transparent;

Entiendo que el background es la propiedad de taquigrafía: ¿qué le hará el valor 0 a todas las propiedades y es un CSS válido?

selector {background:0;}


background:0 es css válido y se compila en:

background-image: initial; background-position-x: 0px; background-position-y: 50%; background-size: initial; background-repeat-x: initial; background-repeat-y: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial;