Skip to content

Instantly share code, notes, and snippets.

@patio11
Created Nov 23, 2015
Embed
What would you like to do?
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