为PHP包含使用不同的样式表

时间:2014-11-02 14:56:41

标签: php html css

php页面由

组成
<header>


<?php include('mid content'); ?>


<footer>

headerfooter具有相同的css文件,其中mid content具有不同的css文件。

我试过了:

<?php include('midcontent.php'); ?>
<style>
<?php include 'CSS/another_css.css'; ?>
</style>

但在这种情况下,footer会被another_css文件覆盖

1 个答案:

答案 0 :(得分:3)

这就是CSS的工作原理。页面中加载的任何CSS文件都应用于页面上的每个元素。如果您不希望another_css.css文件影响页脚,请使其规则特定于您要影响的元素。

<div id="midContent"><?php include('midcontent.php'); ?></div>
<style>
#midContent a { color: pink; }
</style>