html - Firefox not reading css -


basically title, tried opening page on firefox, localhost (wamp) has external css file , not loading. here header info:

<!doctype html> <html lang="en"> <head>     <meta charset="utf-8">     <link type="text/css" rel="stylesheet"  href="..\include\site.css" id="style">     <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> </head> 

the css has been validated has html file, both have no errors. css works in ie , chrome. looked solutions elsewhere couldnt find helped.

any suggestions?

thank-you!

try replacing slashes:

<link type="text/css" rel="stylesheet"  href="..\include\site.css" id="style"> 

to:

<link type="text/css" rel="stylesheet"  href="../include/site.css" id="style"> 

Comments

Popular posts from this blog

Java 8 + Maven Javadoc plugin: Error fetching URL -

android - How to delete or change the searchview icon inside the SearchView actionBar? -

c++ - Msgpack packing bools bug -