我明明写了<link rel="stylesheet" type="text/css" href="style.css">但是浏览器仍然返回错误:Refused to apply style from 'http://localhost:8081/style.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.怎么办?
时间: 2023-03-27 14:04:10 浏览: 190
可能是因为你的服务器没有正确地配置 MIME 类型。你可以尝试在服务器上添加以下代码来配置 MIME 类型:
AddType text/css .css
如果这不起作用,你可以尝试在链接中添加 type 属性:
<link rel="stylesheet" type="text/css" href="style.css">
如果这还不起作用,你可以尝试清除浏览器缓存或尝试在不同的浏览器中打开页面。
相关问题
为什么我的html文件已经写了如下代码:<link rel="stylesheet" type = "text/css" href="style.css">但浏览器打开它的时候仍然报错:Refused to apply style from 'http://localhost:8081/wangye/style.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
可能是因为你的 style.css 文件的 MIME 类型不正确,应该是 text/css,而不是 text/html。你可以在服务器端配置正确的 MIME 类型,或者在 HTML 文件中使用内联样式。
阅读全文