css显示不出背景图片,路径没有错误,css和html和图片都在一个文件夹下
html中是<linktype="text/css"href="body.css"rel="stylesheet"><divid="main"></div>css中是#m...
html中是
<link type="text/css" href="body.css" rel="stylesheet">
<div id="main" ></div>
css中是#main{
position:relative;
height="3600px";
width="1440px";
z-index:-1;
rgba(0, 0, 0, 0);
no-repeat;
center;
background:url("background.jpg");
} 展开
<link type="text/css" href="body.css" rel="stylesheet">
<div id="main" ></div>
css中是#main{
position:relative;
height="3600px";
width="1440px";
z-index:-1;
rgba(0, 0, 0, 0);
no-repeat;
center;
background:url("background.jpg");
} 展开
展开全部
#main{
position:relative;
height:3600px;
width:1440px;
z-index:-1;
background:url("background.jpg") no-repeat center rgb(0,0,0);
}
附注:rgba属于css3,IE的低版本不支持的
position:relative;
height:3600px;
width:1440px;
z-index:-1;
background:url("background.jpg") no-repeat center rgb(0,0,0);
}
附注:rgba属于css3,IE的低版本不支持的
追问
谢谢,删除了rgba就好了!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
背景图片前面的语法错了,请学习CSS语法。
#main{
position:relative;
height:3600px;
width:1440px;
background:url("background.jpg") no-repeat center;
}
你的z-index设置-1什么意思?还有那个颜色,我都去掉了。
#main{
position:relative;
height:3600px;
width:1440px;
background:url("background.jpg") no-repeat center;
}
你的z-index设置-1什么意思?还有那个颜色,我都去掉了。
更多追问追答
追问
谢谢!z-index设成-1不是最底层的意思么?我想在上面放别的元素的,我照你的改了火狐里可以显示,IE里显示不了
追答
background的意思是背景图片/颜色。
你在这个#main的元素里放置任何东西,都不会被背景色遮住的。
你加入了这个z-index:-1以后,可能这个#main完全被遮住,啥都看不到了……
按道理说IE应该没问题的。
你用的IE哪个版本?点击F12,用开发人员工具看看有什么错误。
火狐里安装了开发插件也可以调试一下,看看有没有报错。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-07-13
展开全部
#main{
position: relative;
height: 3600px;
width: 1440px;
z-index: -1;
background:url("background.jpg") rgba(0, 0, 0, 0) no-repeat center;
}
追问
谢谢~我想问下为什么火狐可以显示,IE里显示不了?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询