1

我是 codeigniter 的新手并试图学习它,但我无法加载或使用我的 css 样式表进行布局。我加载CSS文件的方法是我在互联网上找到的,但没有奏效。请提出一些建议。

这是我的代码

<html>

<head>
<title>homePage</title>

 <!--[if lte IE 6]>
    <style type="text/css">
    img, div { behavior: url(http('<?php echo $base_url; ?>images') }
    </style>
<![endif]-->


<!--[IF lte IE 6]>

<link rel="stylesheet" href="<?php echo $base_url; ?>/css/homestyle.css" type="text/css" />

<![endif]-->
</head>

 <body >


 <div id="page">
 <div id="menulinks">
    <a class="active" href="#"><span>Home</span></a>
    <a href="#"><span>Services</span></a>
    <a href="#"><span>About Us</span></a>
    <a href="#"><span>Contact Us</span></a>
</div>
<div id="header">

</div>
          <div class="active" id="contentarea">
  <br>
 <br> 
 </div>

 </div>
</body>

</html>
4

2 回答 2

2
<!--[IF lte IE 6]>
<link rel="stylesheet" href="<?php echo $base_url; ?>/css/homestyle.css" type="text/css" />
<![endif]-->

这是一条注释,大多数浏览器不会解析里面的内容。只能在 IE 下使用。你需要把<link>评论放在外面:

<link rel="stylesheet" href="<?php echo $base_url; ?>/css/homestyle.css" type="text/css" />
于 2012-09-29T13:42:49.767 回答
1

包含的 HTML<!--[if lte IE 6]>只会被 IE6 和更早版本解析 - 这对您的行为属性非常有用,但可能对homestyle.css. 尝试这个:

 <head>
    <title>homePage</title>
    <base href="<?= $base_url;?>">
    <!--[if lte IE 6]>
        <style type="text/css">
            img, div {
                behavior: url(images);
            }
        </style>
    <![endif]-->
    <link rel="stylesheet" href="css/homestyle.css" type="text/css" />
</head>

评论后编辑:

好吧,我假设您已经从您的问题中定义了该变量。进入config/autoload.php并将'url'密钥添加到$autoload['helper']数组中:

例如:$autoload['helper'] = array('url', 'file', 'your_other_helpers...');

然后将上面的 HTML 更改为<base href="<?= site_url();?>">

于 2012-09-29T18:15:14.147 回答