<!doctype html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>豆瓣网</title> <link rel="stylesheet" href="css/douban.css"></head><body><div id="hd-header"> <a href="#" class="header-logo"></a></div></body></html>css/*头部*/#hd-header{ width: 950px; height: 90px; margin: 0 auto; position: relative; border: 1px solid red;}#hd-header .header-logo{ display: block; width: 154px; height: 30px; background: url(images/pp3.jpg); border: 1px solid blue; position: absolute; left: 0px; top: 29px;}文件夹里面有这张图片 就是不显示 ,急死我了,求解答
6 回答
已采纳
qq_冲哥_0
TA贡献40条经验 获得超30个赞
图片的url 不对,你的 样式表在CSS文件夹中,图片在images文件夹中,CSS文件夹和images文件夹是同一级。
所以要找到图片就要向样式表的上一级 下面 的image文件夹中寻找。
background: url(../images/pp3.jpg); 试一试
风火3
TA贡献11条经验 获得超2个赞
<style type="text/css">
#hd-header{
width: 950px;
height: 90px;
margin: 0 auto;
position: relative;
border: 1px solid red;
}
#hd-header .header-logo{
display: block;
width: 154px;
height: 30px;
background: url(images/pp3.jpg);
border: 1px solid blue;
position: absolute;
left: 0px;
top: 29px;
}
</style>
添加回答
举报
0/150
提交
取消