我尝试加载css文件但它不起作用。 这是链接标记:
<link rel="stylesheet" type="text/css" href="application/styles/style.css" />
我怎么能这样做?
答案 0 :(得分:0)
在应用程序文件夹之外创建一个文件夹例如:resources / css / style.css并将其链接如下。
然后文件夹结构将是这样的,
-application
-resources
-system
-index.php
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>resources/css/styles/style.css" />