Imagen de fondo CSS
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Unusual Unicorn
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
<style>
body {
background-image: url('img_girl.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
.wrapper {
background: url('./images/homeBg.png') no-repeat;
background-size: 100vw;
float: left;
height: 100vw;
width: 100vw;
}
body {
color:black;
background-color:white;
background-image:url(images/image_de_fond.png);
}
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;
}
html,body {
background-image: url("your.picture");
}