php页面由
组成<header>
<?php include('mid content'); ?>
<footer>
header
和footer
具有相同的css文件,其中mid content
具有不同的css文件。
我试过了:
<?php include('midcontent.php'); ?>
<style>
<?php include 'CSS/another_css.css'; ?>
</style>
但在这种情况下,footer
会被another_css
文件覆盖
答案 0 :(得分:3)
这就是CSS的工作原理。页面中加载的任何CSS文件都应用于页面上的每个元素。如果您不希望another_css.css
文件影响页脚,请使其规则特定于您要影响的元素。
即
<div id="midContent"><?php include('midcontent.php'); ?></div>
<style>
#midContent a { color: pink; }
</style>