“Repetición de antecedentes” Código de respuesta

Cómo detener una imagen que se repite en CSS

body {
  background-image: url("image.jpg");
  background-repeat: no-repeat;
}
abdullah

repetición

background-image: url('path_to_background_image');
background-repeat: repeat|repeat-x|repeat-y|no-repeat|initial|inherit;
Fragile Flamingo

Repetición de antecedentes

/* Keyword values */
background-repeat: repeat-x;
background-repeat: repeat-y;
background-repeat: repeat;
background-repeat: space;
background-repeat: round;
background-repeat: no-repeat;

/* Two-value syntax: horizontal | vertical */
background-repeat: repeat space;
background-repeat: repeat repeat;
background-repeat: round space;
background-repeat: no-repeat round;

/* Global values */
background-repeat: inherit;
background-repeat: initial;
background-repeat: revert;
background-repeat: unset;
Glorious Gerenuk

Imagen de fondo repetir CSS

div {
  background-image: url("alert.png");
  background-repeat: no-repeat;
}
Hatim Eddinani

Repetición de antecedentes

<repeat-style>#
where 
<repeat-style> = repeat-x | repeat-y | [ repeat | space | round | no-repeat ]{1,2}
Glorious Gerenuk

Respuestas similares a “Repetición de antecedentes”

Preguntas similares a “Repetición de antecedentes”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código