Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我是 php、html、css 和 smarty 的新手。如何在 smarty 中将 css 文件插入/包含到 html 文件中?
@Nambi Narayanan 的答案看起来非常错误且执行不力。我建议您使用以下块:
{block name=head} <link href="/css/mypage.css" rel="stylesheet" type="text/css"/> {/block}
或者您可以直接在页面中包含链接标签而不使用 Smarty:
<link href="/css/mypage.css" rel="stylesheet" type="text/css"/>