CSS not loading in Firefox, Opera and IE - Chrome and Safari works just fine

浪子不回头ぞ 提交于 2019-12-20 04:28:09

问题


Im having some problems at a website construction, and the point is that in Chrome and Safari it works just fine, but not quite the same in Firefox, Opera and Internet Explorer.

Check the website here !

You can try it in the browsers that i mentioned, and confirm what i just said.

Any tips ?

Thanks !


回答1:


Hey Change to your css type

you define type="text/javascript" it's wrong

just define type="text/css"

Now change This

 <link rel="stylesheet" type="text/javascript" href="estilos/estilos.css">

into

<link rel="stylesheet" type="text/css" href="estilos/estilos.css">


来源:https://stackoverflow.com/questions/10846868/css-not-loading-in-firefox-opera-and-ie-chrome-and-safari-works-just-fine

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!