Posted by John on 08/03/07 07:01
"Nikolay Kurtov" <nkurtov@gmail.com> wrote in message
news:1186122493.857897.126340@o61g2000hsh.googlegroups.com...
>I have index.html, style.css, image.png in one folder.
>
> in index.html I include style.css
> <head>
> <title>Newbie question</title>
> <meta http-equiv="content-type" content="text/html; charset=utf-8" /
>>
> <link href="style.css" rel="stylesheet" type="text/css" />
> </head>
>
>
> In style.css I set the background:
>
> body{
> background-image:url("image.png");
> }
>
>
> But the image doesn't load.
> How should I correct the url in css?
>
Hi
Remove double primes around image.png
BODY { background-image:url(image.png);
Regards
John
Navigation:
[Reply to this message]
|