CodeIgniter CSS将不会链接到html

时间:2018-08-15 21:58:51

标签: html css codeigniter

我不知道为什么我的CSS无法链接到html文件。我已经在线尝试了示例,如代码段所示,但是这两个选项都不起作用。当我在浏览器中加载localhost文件夹时,html页面肯定显示为文本“ root-container”。任何帮助都会很棒!

尝试在链接之前添加“应用程序”似乎也没有什么不同。例如。 “应用程序/资产/样式/navigation.css”。

此外,帮助程序和url已添加到自动加载配置文件中。

基本URL

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

项目结构

省略根文件夹。假设根文件夹名称为“ mysite”。所以mysite-> application-> ...

enter image description here

HTML

<!DOCTYPE html>
<html>

<head>
  <meta charset = "utf-8">

<link rel="stylesheet" type = "text/css" href="<?php echo 
base_url('application/assets/style/navigation.css')?>">

    <link rel = "stylesheet" type = "text/css" href = "<?php echo 
base_url(); ?>assets/style/navigation.css">

  <?php echo link_tag('assets/style/navigation.css'); ?>

</head>

<body>
  <div class = "root-container">
    root-container


  </div>
</body>

</html>

CSS

html {
 margin: 0 auto;
 padding: 0px;
}

body {
  margin: 0 auto;
  padding: 0px;
}

.root-container {
  width:100%;
  height:60px;
  border-bottom: 2px solid grey;
  background-color: black;
  color: red;

}

.root-container p {
  color:red;
  text-decoration: line-through;
}

添加请求的图片

enter image description here

结果 文字应为红色,并在其中划过线。

enter image description here

1 个答案:

答案 0 :(得分:1)

okey,您将资产文件移动到主目录,然后将application / assets / style / navigation.css编辑到资产/style/navigation.css