gpt4 book ai didi

php - 我的 css 使用 codeIgniter 没有正确显示

转载 作者:太空宇宙 更新时间:2023-11-04 03:40:16 27 4
gpt4 key购买 nike

我正在尝试使用 codeigniter 在我的 table 上显示 css,但它不起作用。如果我在我的 html 的 header 部分添加了 css,它就可以工作,但问题是当我为 css 创建一个单独的文件夹时,设计不起作用。我按照在线示例正确地做到了这一点。

这是我在 View 中的代码:

<html>
<head>
<title>No title</title>
<link rel="stylesheet" href=<?php echo base_url(); ?>"css/style.css" type="text/css" media="screen" charset="utf-8">
</head>
<body>
<div id="container">
<h4> Super pagination with CodeIgniter</h4>
<?php echo $this->table->generate($records); ?>
<?php echo $this->pagination->create_links(); ?>
</div>
</body>
</html>

这是我在 Controller 中的代码:

    <?php

class Site extends CI_Controller {

function __construct() {
parent::__construct();
}

function index() {
$this->load->library('pagination');
$this->load->library('table');
$config['base_url']='http://localhost:81/nine/index.php/site/index';
$config['total_rows']=$this->db->get('data')->num_rows();
$config['per_page']=1;
$config['num_links']=20;
$config['full_tag_open']='<div id="pagination">';
$config['full_tag_close']='</div>';

$this->pagination->initialize($config);
$data['records']=$this->db->get('data', $config['per_page'], $this->uri->segment(3));
$this->load->view('site_view', $data);
}
}

这是自动加载:

$autoload['libraries'] = array('database');
$autoload['helper'] = array('url');

这是配置

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

这是数据库

$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = '';
$db['default']['database'] = 'datadb';

不知道是不是codeigniter版本的问题。我用的是2.2.0,网上是1.7.2。

enter image description here

应该是……

enter image description here

最佳答案

您的样式表链接不正确(注意 href 后的双引号):

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

关于php - 我的 css 使用 codeIgniter 没有正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24992676/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com