0
How can i add image in background in CSS?
plz suggest me syntax also! thank you.
2 Antworten
+ 2
body {
background-image: url("image.jpg");
background-repeat: no-repeat;
background-size: cover;
width : 100%;
height: auto;
}
plz suggest me syntax also! thank you.