0
How to put/insert an image as background in web?
So hard
2 Antworten
+ 5
body {
•••
background-image : url("image.jpg");
}
You can use drop box or image bb to upload images and use in sl
+ 1
first select the html element you want to apply the background on it than simply add background-image to it , for exp if we want a background img on the body we do this :
body {
background-image:url("linkToImg");
}
fell free to read the w3 doc
https://www.w3schools.com/cssref/pr_background-image.asp