+ 30
Uploading image from Google🤔
Any one know how to upload an image from Google to our code playground? | | | V My CSS code (not working) #Head { Background-image: url("http://www.4usky.com/data/out/73/164653312-pride-wallpapers.jpg"); } Any mistake?
4 Antworten
+ 21
Chris C. Thank you sir😀
+ 19
Thanks 😊 :)
+ 7
Things in the head tag will not be displayed in the browser.
Add the image to the body element.
replace
#head {}
With
body{}
+ 1
I think you should do it like this. I also preffer using other things to make the background look good:
body {
background-image: url(“link”); background-repeat: no-repeat; size: #% #%;
}