我已经加载了css背景图片,但它不会在浏览器中显示,我在codeigniter框架中工作。我用的是火狐......
#star ul.star {
list-style:none;
margin:0;
padding: 0;
width:85px;
height:20px;
left: 10px;
top:4px;
position:relative;
float:left;
background:url('../media/stars.gif') repeat-x;
cursor:pointer;
}
答案 0 :(得分:0)
你需要给出那个或那个绝对的图像路径 如果“media”文件夹在根目录中,那么您可以像这样使用它
background:url('/media/stars.gif') repeat-x;
这可能会对你有所帮助