1 前言
瀏覽器報錯誤(chrome和firefox都會):because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checkin...
2 解決方案
<link rel="stylesheet" href="../../../Static/css/common/common.css" media="all"> //刪除rel屬性或者刪除rel和media屬性都可以,改為如下: <link href="../../../Static/css/common/common.css" media="all"> <link href="../../../Static/css/common/common.css">
3 小結
同時也會伴隨JS不支持等,解決了CSS問題,JS警告也就會消失。如果資源找不到,又在Linux系統上,主要路徑大小寫問題。
