我想知道我应该使用这些代码行来包含标准的 Joomla CSS 规则吗?
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
我们知道,在这些行之后,我们当然会使用我们自己的模板特定 CSS 文件来覆盖一些规则,如下所示:
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template.css" type="text/css" />
重要提示:假设我不想为每个人发布模板,我只会在我的特殊需要时使用它。所以我会在需要的地方定义必要的规则。
有了这个假设,我还应该包括前两个 CSS 吗?为什么?