我正在尝试使用CSS设置一个完整大小的背景图像,这是我的代码在阅读几个博客后的样子,包括在这个网站上开始的一个主题:
html{
background-image: url('C:\Users\sony\Desktop\psddesigns\background.jpeg');
background-repeat: no-repeat;
background-position: center center;
min-height: 100%;
background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-attachment: fixed;
}
图像仍未显示。它的大小是2.4兆字节。所有文件都在我的电脑上。
答案 0 :(得分:0)
将css放在html标签上但不在身上
body{
margin: 0;
padding: 0;
background-image: url(../images/background/australia_sky.jpg); //this is a relative path change it to your liking
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
答案 1 :(得分:0)
使用相对网址,例如(网址(./ psddesigns / background.jpeg))或将其上传到互联网
答案 2 :(得分:0)
使用相对路径。将您的HTML文件和图像放在同一目录中,然后您可以使用相对URL加载图像,如下所示:
html {
background-image: url('image-name.jpeg');
您可以了解更多相对和绝对路径。 http://webdesign.about.com/od/beginningtutorials/a/aa040502a.htm