CSS背景图片没有显示?

时间:2013-12-06 19:09:00

标签: html css

<link rel="stylesheet" type="text/css" href="blahblah.css">
    </head>

    <body>


    </body>

</html>

CSS

body {
height: 1370px;
background-image: url("C:/Users/blah/Desktop/Website/images/blah.jpg");
}

不确定为什么会这样。有帮助吗?图像很好,但出于某种原因作为背景图像,它不会出现。谁能告诉我为什么?

2 个答案:

答案 0 :(得分:3)

您无法以这种方式从文件系统加载图像。假设您的网站位于“C:/ Users / blah / Desktop / Website /”,请尝试

body {
    height: 1370px;
    background-image: url('images/blah.jpg');
}

您需要一个CSS文件位置的相对路径

答案 1 :(得分:0)

您的Windows用户名是否真的“啰嗦”?如果是这样,真棒,但如果没有,并且它中有空格,它有时会在获取文件时产生问题。为什么不尝试使用URL获取它: 图像/ blah.jpg