0

我正在使用以下代码在我的 codeigniter 网站中加载我的 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

1 回答 1

4

尝试

<link rel="stylesheet" type="text/css" href="<?php echo $base_url; ?><?php echo $css; ?>style.css" />
于 2012-04-11T19:25:42.530 回答