如何在css Codeigniter中的base_url中包含base_url

时间:2016-01-28 06:08:17

标签: php html css codeigniter

大家好我需要帮助我想在一个css文件中将base_url包含在背景网址中但是它无法正常工作请我帮忙。

  background: url('<?php echo base_url();?>assets/images/re_1.png') repeat;
color: #413c35;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;

3 个答案:

答案 0 :(得分:1)

试试这个:

SpecialFileExists(ExpandConstant('{app}'))

现在叫它:

body {
 background:#356aa0 url(../img/background.png) repeat-x;
 color:#fff;
}

答案 1 :(得分:0)

试试这个

CSS

background:url('assets/images/re_1.png');
color: #413c35;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;

HTML

 <link rel="stylesheet" href="<?php echo base_url('example.css');?>">

example.css更改为您的css文件路径

答案 2 :(得分:0)

在您的观点中写css

<style>
.blah{ 
   background: url('<?php echo base_url();?>assets/images/re_1.png') repeat;
  color: #413c35;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  }
</style>