我已将我的 css 包含在 codeigniter 文件夹中的应用程序文件夹中:系统应用程序 application/css/style.css
如果我包含这样的 css 文件,我将无法加载我的视图文件
<link rel="stylesheet" href="<?php echo base_url();?>css/style.css" type="text/css" media="screen"/>
可能是什么原因?请帮我解决这个问题。
<html>
<head>
<link rel="stylesheet" href="<?php echo base_url();?>css/style.css" type="text/css" media="screen"/>
</head>
<body>
<table width="100%" border="1" >
<td align="left"><h1>hellooooooo</h1></td>
</table>
</body>
</html>