+ 1
Css code didn't worked?
Why this css code didn't worked? body { background-image:https://images.app.goo.gl/4oxdnY4YaRvgUHK78; }
7 Answers
+ 4
Chris Coder forget about -image, you should always use background instead.
+ 1
Still didn't worked
body {
background-image:url(https://tenor.com/view/thara-bhai-joginder-gif-22578483);
}
+ 1
0
You should include the "url()" function, wrapping the link in it.
0
Yes as FFFF:0000h stated. But your link is invalid. When you get a working one don't forget the quotation marks inside the function
background-image: url("image.jpeg");
0
Try:
body {
background-image: url("https://images.app.goo.gl/4oxdnY4YaRvgUHK78");
}