我有一个小网站,我想自己“装饰”,但我不明白为什么单独的CSS文件适用于基本页面而不是包含在页面上。
<html>
<head>
<link rel="stylesheet" type="text/css" href="scripts/styles.css"/>
</head>
</html>
这就是我链接样式表的方式。
<?php
$page = $_GET['page'];
if (!empty($page)) // if $page has a value, include it
{
$page .='.php';
include($page);
}
else // otherwise, include the default page
{
include('news.php'); // news.php is a default page
}
?>
这就是包含部分。
#vk_profile
{
color:#FAB41D;
font-family:Courier New;
font-size:12px;
font-weight:bold;
font-style:normal;
text-decoration:none;
}
#red_text
{
color:#FF0600;
font-family:Courier New;
font-size:12px;
font-weight:bold;
font-style:normal;
text-decoration: underline;
}
CSS代码示例。
有人有答案或至少有指南吗?
P.S。从来没有使用过CSS,所以我是一个总菜鸟。