我正在使用codeigniter来构建应用程序。我已将我的图像放在assets/images/images/myimage.jpg
中我知道如何从PHP文件中调用它。我写..
<?php echo base_url(); ?>assets/images/images/myimage.jpg
但是我无法理解如何在样式表中执行此操作,我尝试编写以下内容但是没有获取图像
background:url(../assets/images/images/header-bg.jpg) no-repeat center top;
Asset
文件夹与application,system and user_guide
文件夹一起位于基本目录中。
答案 0 :(得分:1)
一个示例示例; 试试这个..
<!DOCTYPE html>
<html>
<head>
<style>
body
{
background-image:url('image.jpg');
background-color:#cccccc;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>