Skip to content

Commit

Permalink
Lowercase attr values for x-ua-compatible meta tag
Browse files Browse the repository at this point in the history
Change made in order to be more consistent with the overall use of
lowercase in `index.html`.

From https://msdn.microsoft.com/en-us/library/jj676915.aspx:

  "The X-UA-Compatible header isn't case sensitive; however, it must
   appear in the header of the webpage (the HEAD section) before all
   other elements except for the title element and other meta elements."

Source: h5bp/html5-boilerplate#1656
  • Loading branch information
itskingori committed Feb 3, 2018
1 parent 6d9b6d8 commit 5ddcc10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Minimal by Steve Smith</title>

<link rel="stylesheet" href="stylesheets/styles.css">
Expand Down

0 comments on commit 5ddcc10

Please sign in to comment.