0

我已经加载了 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; 
}
4

1 回答 1

0

您需要为此提供图像的绝对路径,或者如果“媒体”文件夹位于根目录中,那么您可以像这样使用它

background:url('/media/stars.gif') repeat-x; 

这可能会帮助你

于 2013-08-01T05:15:04.980 回答