我有一个名为light.png的png文件
我想在我的网站上将其作为我的背景图片(并且有点透明)。它是如何工作的?
我的css:
body {
background-image: url("light.png");
text-align: center;
border-style: solid;
border-width: 2px;
border-color: white
}
答案 0 :(得分:2)
你在哪里放置你的形象? 你必须给出正确的图像路径。一经检查。 像
body {
background-image: url("../media/light.jpg");
text-align: center;
border-style: solid;
border-width: 2px;
border-color: white }
答案 1 :(得分:1)
试试这个
body{
top: 0;
position: fixed;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
background: url(/images/landing_image.jpg) no-repeat;
background-size: cover;
}