Why are the pictures not filling, when I use style property for background-image url.
What is shown on the page :
body {
background-image: url("../Bilder/ikkephotoshopped.jpg"),
url("../Bilder/photoshopped.jpg" );
}
Why are the pictures not filling, when I use style property for background-image url.
What is shown on the page :
body {
background-image: url("../Bilder/ikkephotoshopped.jpg"),
url("../Bilder/photoshopped.jpg" );
}
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