HTML5 because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME c
时间:2020-08-02 21:55:06
收藏:0
阅读:2547
我这里出现这个问题是 引入 的文件路径错误。
原来的文件路径是:
<link rel="stylesheet" href="../css/layui.css" media="all">
然后一直无法加载。出现了这个情况。然后修改为:
<link rel="stylesheet" href="css/layui.css" media="all">
跟上面相比,少了 ../ 然后运行就正常了
原文:https://www.cnblogs.com/sabertobih/p/13421751.html
评论(0)