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

前端 未结 1 890
谎友^
谎友^ 2021-01-24 22:15

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.

相关标签:
1条回答
  • 2021-01-24 22:56

    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">
    
    0 讨论(0)
提交回复
热议问题