--- title: background slug: Web/CSS/background tags: - CSS - 'CSS:Referencias' - Todas_las_Categorías translation_of: Web/CSS/background ---

{{CSSRef}}

La propiedad background es un atajo para definir los valores individuales del fondo en una única regla CSS. Se puede usar background para definir los valores de una o de todas las propiedades siguientes: {{ Cssxref("background-attachment") }}, {{ Cssxref("background-color", "color") }}, {{ Cssxref("background-image", "image") }}, {{ Cssxref("background-position", "position") }}, {{ Cssxref("background-repeat", "repeat") }}.

Sintaxis

/* Usando <background-color> */
background: green;

/* Usando <bg-image> y <repeat-style> */
background: url("test.jpg") repeat-y;

/* Usando <box> and <background-color> */
background: border-box red;

/* Una sola imagen, centrada y escalada */
background: no-repeat center/80% url("../img/image.png");

La propiedad  background se especifica como una o más capas de fondo, separadas por comas.

La sintaxis de cada capa es la siguiente:

Valores

background-color
ver color.
background-image 
ver image.
background-repeat 
ver repeat.
background-attachment 
ver background-attachment.
background-position 
ver position.

Ejemplos

HTML

<p class="topbanner">
  Starry sky<br/>
  Twinkle twinkle<br/>
  Starry sky
</p>
<p class="warning">Here is a paragraph<p>

CSS

.warning {
  background: red;
}

.topbanner {
  background: url("https://mdn.mozillademos.org/files/11983/starsolid.gif") #00D repeat-y fixed;
}

Result

{{EmbedLiveSample("Ejemplos")}}

Notas

Tomando una declaración válida, la propiedad background inicia las propiedades individuales a sus valores iniciales para después asignarles los valores especificadas explícitamente en la declaración. No hay que definir un valor por cada propiedad individual, se cambia solo las que necesitamos en relación al valor por defecto.

Especificaciones

Compatibilidad de navegadores

Navegador Mínima versión
Internet Explorer 4
Firefox 1
Netscape 6
Opera 3.5

Ver también

{{ Cssxref("background") }}, {{ Cssxref("background-attachment") }}, {{ Cssxref("background-color") }}, {{ Cssxref("background-image") }}, {{ Cssxref("background-position") }}, {{ Cssxref("background-repeat") }}