The Wayback Machine - https://web.archive.org/web/20150906094841/https://developer.mozilla.org/es/docs/Web/CSS/background-repeat

background-repeat

by 2 contributors:

Resumen

background-repeat especifica si la imagen es repetida (mosaïco) y de que manera.

Sintaxis

background-repeat: repeat | repeat-x | repeat-y | no-repeat | inherit

Valores

repeat
la imagen es repetida horizontal y verticalmente
repeat-x
repetición únicamente en horizontal.
repeat-y
repetición únicamente en vertical.
no-repeat
no hay repetición: una sola copia es expuesta.


Ejemplos

.exampleone {
	background-image: url("logo.png");
	background-repeat: repeat-x;
}

.exampletwo {
	background-image: url("logo.png");
	background-repeat: no-repeat;
}

Especificaciones

Compatibilidad

Navegador Versión mínima
Internet Explorer 4
Firefox 1
Netscape 4
Opera 3.5

Ver también

background, background-attachment, background-color, background-image, background-position, background-repeat


Categorías

Interwiki languages

Etiquetas y colaboradores del documento

Contributors to this page: teoli, Nathymig
Última actualización por: teoli,