Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@patio11
Created November 23, 2015 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patio11/83f4e4c92ecfeffa3835 to your computer and use it in GitHub Desktop.
Save patio11/83f4e4c92ecfeffa3835 to your computer and use it in GitHub Desktop.
Minimal repro case of stylesheets not loading on Firefox with wrong MIME specified
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel="stylesheet" type="css/text" href="https://dwpnibhogf8y5.cloudfront.net/static/css/bootstrap.min-f04b517b.css" />
<body>
<div class="alert alert-danger">This text should be styled.</div>
</body>
</html>
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel="stylesheet" href="https://dwpnibhogf8y5.cloudfront.net/static/css/bootstrap.min-f04b517b.css" />
<body>
<div class="alert alert-danger">This text should be styled.</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment