我在 coediter 中加载图像时遇到问题,在 的帮助下base_url()
,我成功加载了 css,但不幸的是图像没有。实际上,图像是在 css 文件(style.css)中调用的,所以要加载 style.css,我在 html 中进行了如下更改:
<link href="<?php echo base_url('css/style.css'); ?>" rel="stylesheet" type="text/css" media="screen" />
好的,它正在加载所有样式和 css,但未加载在 css 的 styl.css 预览中使用的图像:
html, body { height: 100%; }
* {
margin: 0;
padding: 0;
}
body {
background: url(images/img04.jpg) repeat left top;
}
所以任何想法任何建议都将受到高度赞赏。谢谢你