You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2019. It is now read-only.
When using "!" we got template with this tag: <meta http-equiv="X-UA-Compatible" content="ie=edge">
For what I heard, this tag is now optional. For example this page linking to Microsoft page for IE11, that says:
"Use the HTML5 document type declaration to enable edge mode: <!doctype html>"
In other words, by using <!doctype html> tag we already enabling edge mode, and all previous IE versions are no longer supported by Microsoft.
And in Edge this tag is deprecated (quote from same page):
"As we announced in August 2013, we are deprecating document modes as of IE11"
So, is there some reason to still use this tag in default template?
When using "!" we got template with this tag:
<meta http-equiv="X-UA-Compatible" content="ie=edge">For what I heard, this tag is now optional. For example this page linking to Microsoft page for IE11, that says:
"Use the HTML5 document type declaration to enable edge mode: <!doctype html>"
In other words, by using <!doctype html> tag we already enabling edge mode, and all previous IE versions are no longer supported by Microsoft.
And in Edge this tag is deprecated (quote from same page):
"As we announced in August 2013, we are deprecating document modes as of IE11"
So, is there some reason to still use this tag in default template?