我正在使用两个文件来显示我的网页,一个用于页眉和页脚(layout.htm)以及使用 smarty 的内容(content.htm)我包括文件例如:layout.htm
<html>
<head>
//here i am adding script and styles its common for all page
</head>
<body>
<div class="body">
{include file=$INNER_PAGE}
</div>
</body>
</html>
我需要单独在内页中包含样式,该样式应该仅适用于该页面,因此我无法将其添加到 layout.htm 中。所以我将以下行包含在我的 content.htm 文件中
<link rel="stylesheet" type="text/css" href="prop_descr.css"/>
因为它显示错误所以我怎么能解决这个问题
谢谢你!