Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.95 KB | None | 0 0
  1.  
  2. Why Firefox won't start Css without errors message?
  3. html css debugging firefox
  4. I write this sample code on notepad for an html site with css but this won't work on Mozilla(version49.0.etc) while it does on IE, Chrome and Opera. If i start it on FF, debugger says "CSS has no errors" but it only display html code. Someone know how to fix it?
  5.  
  6. Here there are the codes(html and CSS) of my site on local path:
  7.  
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  9.   http://www.w3.org/TR/html4/loose.dtd>
  10.     <html lang="it">
  11.     <head>
  12.     <meta name="viewport" content="width=device-width">
  13.     <meta http-equiv="X-UA-Compatible" content="IE=edge" charset="iso-8859-1">
  14.  
  15.         <title>Site</title>
  16.  
  17.     <style type="text/css">
  18.     </style>
  19.     <link href="C:/Users/Dean/Desktop/Site/File/file1.css" rel="stylesheet" media="all">
  20.  
  21.  
  22. </head>
  23.  
  24.  
  25.  
  26. <body class="sub">
  27. <div class="alt">
  28.  
  29.  
  30. <h1>Text here</h1>
  31.  
  32. </div>
  33.     </body>
  34.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement