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.
我的css是用php生成的。
我想将内容类型设置为 css 但客户端。
我知道服务器端,我们可以做header('Content-Type: text/css');
header('Content-Type: text/css');
但是有没有办法在客户端强制内容类型为 css?
服务器必须是在响应标头中设置内容类型的服务器。如果您有某种奇怪的限制,无法单独提供 CSS 文件,请考虑将 CSS 加载到全局共享 php 页面上的 <style> 标记中,在页眉或页脚 html 的任何位置。