【发布时间】:2014-12-29 07:22:44
【问题描述】:
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 文件覆盖
【问题讨论】: