0

Why are the pictures not filling, when I use style property for background-image url. What is shown on the page : enter image description here

  body {
    background-image: url("../Bilder/ikkephotoshopped.jpg"), 
                    url("../Bilder/photoshopped.jpg" );
    }

the pictures suppose to go into the page enter image description here enter image description here

Achu
  • 39
  • 6

1 Answers1

0
  body {
    background-image: url("../Bilder/ikkephotoshopped.jpg");
    background-image:  url("../Bilder/photoshopped.jpg" );
    background-repeat: no-repeat;
    }

i had to use the background-image property twice, that was the solution

Achu
  • 39
  • 6