Skip to content

Instantly share code, notes, and snippets.

@henrahmagix
Last active August 29, 2015 14:14
Show Gist options
  • Save henrahmagix/cc1ff83fed37a051f345 to your computer and use it in GitHub Desktop.
Save henrahmagix/cc1ff83fed37a051f345 to your computer and use it in GitHub Desktop.
If setting the meta charset, does that define it for all links?
<!-- Charset is in http-equiv -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Does Charset have to be defined in an attribute? -->
<link type="text/css" charset="utf-8" rel="stylesheet" href="media/styles/application.css" />
<!-- Charset is in its own attribute -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Charset is not defined. Does it come from above <meta>? -->
<link rel="stylesheet" href="styles/main.css">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment