存储在C:\中的图像作为html文档的背景

时间:2012-09-09 14:33:04

标签: html background-image

我有这个很好的小代码行

<html style="background-image:url(file:///C:\inetpub\wwwroot\lifehacks.png); background-repeat:repeat; background-attachment:fixed; overflow:scroll;">

我基本上把练习网站放在一起习惯html。当我将背景作为指向包含此图像的网站的链接时

style="background-image:url(http://a0.twimg.com/profile_images/1381375879/lifehacks10.png)

工作得很好。我将图像保存到我的wwwroot文件夹,其中包含我的html文档。为什么现在不显示图像?

1 个答案:

答案 0 :(得分:1)

如果图像与html文档位于同一文件夹中,则可以执行以下操作:

<html style="background-image:url(lifehacks.png); background-repeat:repeat; background-attachment:fixed; overflow:scroll;">