CodeIgniter中加载css文件

CodeIgniter中加载css文件

1.用原始的html中的link标签
2.用CodeIgniter内建的link_tag函数


STEP1---载入ci的html helper
   a.在对应的控制器中添加代码:$this->load->helper('html');
   b.在config/autoload.php文件中,修改$autoload['helper'] = array('html');这样CI会自动加载html助手。


STEP2---使用

echo link_tag('css/mystyles.css') 

它会输出

  

复杂的使用:

$link = array( 
    'href' => 'css/printer.css', 
    'rel' => 'stylesheet', 
    'type' => 'text/css', 
    'media' => 'print'); 
    echo link_tag($link);

等效于

 

  

你可能感兴趣的:(CodeIgniter中加载css文件)