对于我下周的任务,我们必须知道以下内容:
当我这样做时它没有css(因为css和图像的路径)。 例如,我的模板的标准路径是:
<link rel="stylesheet" href="css/animate.css">
然而,这不起作用。 我尝试了一些有用的东西:
<link rel="stylesheet" href="templates/protostar/css/animate.css">
但我不知道为什么模板/ protostar是根?我认为root是index.php所在的文件夹?
如果我对图像做同样的事情
<div class="fh5co-portfolio-figure animate-box" style="background-image: url(images/work_1.jpg);"></div>
到<div class="fh5co-portfolio-figure animate-box" style="background-image: url(templates/protostar/images/work_1.jpg);"></div>
这不起作用。因此图片仍然不会显示在页面上。
那么有人可以向我解释这种行为以及如何做到这一点吗?