Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set IE11 default emulating Core

how i can set default emulation IE to Edge? In F12 i have selected IE7 and i dont know how return Edge.

IE11 Developer Tools default emulating mode

like image 224
Misaz Avatar asked Apr 03 '14 15:04

Misaz


1 Answers

The easiest way to get your page to render in Edge mode is to include a DOCTYPE on the top of your HTML page:

<!DOCTYPE html>

If you are testing your page locally or on the intranet, you may have to change your Compatibility view settings. These can be found in:

"Tools" (Alt+T) -> "Compatibility View Settings" -> And uncheck "Display Intranet Sites in Compatibility View"

You can also include the X-UA-Compatible tag, which will force the page to EDGE mode.

More information on X-UA-Compatible: http://modern.ie/en-us/performance/how-to-use-x-ua-compatible

If you have any more questions, you visit http://Modern.ie

like image 175
Eric Tedj - MSFT Avatar answered Oct 18 '22 13:10

Eric Tedj - MSFT