Search code examples
cssbackground-image

I have trouble setting fixed image as background for my body's website


I want to add a fixed image for my body's background, but it doesn't work yet.

I tried to write the correct code, though even after re-checked it, it doesn't work. I tried to set a background-color, and it's working fine. I also re-checked the image's URL, and it seems to be the good one.

body {
  background-image: url:("https://media.istockphoto.com/photos/magic-hands-picture-id182751516?k=6&m=182751516&s=612x612&w=0&h=Sh6eYcq8Sbapy1jDwW0bjYO-0295X0Ju8jQbi0YOLAs=");
}

No error message. Background remains white & blank. Nothing happened. Here is the

URL of my Code-pen : https://codepen.io/Peyo5202/pen/zYOrzMZ?editors=0100


Solution

  • remove ':' after url

    background-image: url("https://media.istockphoto.com/photos/magic-hands-picture-id182751516?k=6&m=182751516&s=612x612&w=0&h=Sh6eYcq8Sbapy1jDwW0bjYO-0295X0Ju8jQbi0YOLAs=");