CSS Background Image Not Loading

CSS Background image not loading

here is another image url result..working fine...i'm just put only a image path..please check it..

Fiddel:http://jsfiddle.net/287Kw/

body 
{
background-image: url('http://www.birds.com/wp-content/uploads/home/bird4.jpg');
padding-left: 11em;
padding-right: 20em;
font-family:
Georgia, "Times New Roman",
Times, serif;
color: red;


}

Background image not loading correctly in html

Maybe you need to check which version of the opera browser you are using is it supported for css. Here I attach a link to find out the versions of some supported browsers : background-repeat

CSS Background Image Not Displaying

According to your CSS file path, I will suppose it is at the same directory with your HTML page, you have to change the url as follows:

body { background: url(img/debut_dark.png) repeat 0 0; }

CSS: background-image: is not displaying my image (First time making a website and first time using stack overflow)

You shouldn't use the absolute path that's related to your computer, because it wont work elsewhere!

I think the problem comes from the use of \ in your paths. Try replacing them by '/'. I don't know exactly about your folders architecture but try something like this : images/aes.jpg

Background-image don't load an image

Finally, I have created content folder and: background-image: url('../../static/app/content/login.jpg');



Related Topics



Leave a reply



Submit