2012-04-11 86 views
0

我正在使用以下代碼在我的codeigniter網站中加載我的css文件。爲什麼我的CSS文件沒有加載?

<link rel="stylesheet" type="text/css" href="<?php $base_url?><?php $css?>style.css" /> 

在我的config.php我已經使用此代碼。

$config['base_url'] = 'http://localhost/mysite'; 
$config['css'] = "/assets/css/"; 

但是css沒有加載。

我做錯了什麼?

回答

4

嘗試

<link rel="stylesheet" type="text/css" href="<?php echo $base_url; ?><?php echo $css; ?>style.css" /> 
相關問題