thinkphp模版页面无法识别css文件中的模板替换

来源:互联网 发布:网络创世纪服务器架设 编辑:程序博客网 时间:2024/05/18 05:43

举例:

.tree dd .list li a em{width:22px;height:24px;background: rgba(252, 254, 255, 0) url(__PUBLIC__/img/lefticon.gif) no-repeat scroll 15px 8px;display:inline;float: left;margin-right:1px;}

如果这个样式放在一个css文件中,并通过<import type='css' file='Css.left'/>引入当前页面,那么背景图片不会显示出来


如果直接把此样式写在当前页面的style标签中,则能显示
<style>
.tree dd .list li a em{width:22px;height:24px;background: rgba(252, 254, 255, 0) url(__PUBLIC__/img/lefticon.gif) no-repeat scroll 15px 8px;display:inline;float: left;margin-right:1px;}
</style>


0 0
原创粉丝点击