“imagen de fondo” Código de respuesta

Imagen de fondo CSS

background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Unusual Unicorn

Cómo establecer una imagen como imagen de Backgroung

<style>
body {
  background-image: url('img_girl.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
</style>
Grotesque Gazelle

Imagen de fondo CSS

.wrapper {
    background: url('./images/homeBg.png') no-repeat;
    background-size: 100vw; 
    float: left;
    height: 100vw;
    width: 100vw;
} 
Weary Walrus

Imagen de Mettre en el fondo

body {
color:black;
background-color:white;
background-image:url(images/image_de_fond.png);
}
Bloody Beetle

imagen de fondo

div {
  background-color: #ffffff;
  background-image: url("img_tree.png");
  background-repeat: no-repeat;
  background-attachment: scroll|fixed|local|initial|inherit;
  background-position: right top  |  x% y%  |  xpos ypos;
  background-clip: border-box|padding-box|content-box|initial|inherit;
  background-size: auto|length|cover|contain|initial|inherit;
}
//shorthand:
div {
  background: #ffffff url("img_tree.png") no-repeat right top;
}
CuteKittyCat

Imagen de fondo CSS

html,body {
  background-image: url("your.picture");
}
No Name Pro

Respuestas similares a “imagen de fondo”

Preguntas similares a “imagen de fondo”

Más respuestas relacionadas con “imagen de fondo” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código