我的HTML代码 -
<html>
<head>
<style type="text/css">
{
/*for setting background image*/
background-image: url('C:/Users/SONY/Desktop/CSS/images.jpg');
background-attachment: fixed
}
</style>
</head>
</html>
此代码用于设置背景图像。但它没有显示出来 结果。我没有创建两个文件。像一个CSS和另一个HTML文件。 我已将这两个文件编译成一个。
为什么我无法看到背景图片?尽管给了 URL的正确路径。
答案 0 :(得分:1)
答案 1 :(得分:0)
您正在将背景图像应用于任何类/ ID或任何html标记(如html,body等),或者您需要添加类或ID,或者需要将样式应用于内置标记。你可以试试这个
<html>
<head>
<style type="text/css">
html{
/*for setting background image*/
background-image: url('C:/Users/SONY/Desktop/CSS/images.jpg');
background-attachment: fixed;
}
</style>
</head>
</html>
希望这有帮助。
答案 2 :(得分:0)
我认为你的代码在css文件夹下,所以该行应该是: background-image:url('images.jpg');
答案 3 :(得分:0)
Use this style in your code. If want to pick image from local computer.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html {
background-image: url(./images.jpg);
background-attachment: fixed;
}
</style>
</head>
<body>
</body>
</html>