x-ua-compatible is used to specify the model for IE browser to parse and compile pages The x-ua-compatible header tag is case-insensitive and must be used in the head and before other meta tags except title. 1. Use one line of code to specify the browser to use a specific document mode. <meta http-equiv="x-ua-compatible" content="IE=9" > <meta http-equiv="x-ua-compatible" content="IE=8" > <meta http-equiv="x-ua-compatible" content="IE=7" > 2. In some cases, we need to limit the browser's parsing of the document to a specific version, or limit the browser to the performance of some older versions. You can use the following method: <meta http-equiv="x-ua-compatible" content="IE=EmulateIE9" > <meta http-equiv="x-ua-compatible" content="IE=EmulateIE8" > <meta http-equiv="x-ua-compatible" content="IE=EmulateIE7" > With this writing style, the browser either parses it in standard mode or in IE5 Quirks mode. 3. For testing purposes, we can also use the following statement to specify that the browser parse the page according to the highest standard mode. <meta http-equiv="x-ua-compatible" content="IE=edge" > 4. Specify multiple modes. We can separate multiple versions with commas, in which case the browser will choose the highest supported version from this list to render in standards mode. As shown in the example below, when browsing in IE8, IE7 standard mode will be used for rendering because it does not support IE9 and IE10. <meta http-equiv="x-ua-compatible" content="IE=7,9,10" > The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. At the same time, I also hope that you can support 123WORDPRESS.COM! |
<<: Detailed explanation of six web page image carousel effects implemented with JavaScript
>>: Example code for implementing fullpage.js full-screen scrolling effect with CSS
mysql installer community 8.0.16.0 installation g...
Preface MySQL supports many types of tables (i.e....
Preface The three-column layout, as the name sugg...
Building an image is a very important process in ...
Common scenarios for Nginx forwarding socket port...
Table of contents 1. async 2. await: 3. Comprehen...
In the front-end design draft, you can often see ...
This article shares the specific code of JS+AJAX ...
Apache Superset is a powerful BI tool that provid...
Table of contents 1 element offset series 1.1 Off...
Nginx's configuration syntax is flexible and ...
I installed a virtual machine a long time ago, an...
The <TH> tag is used to set the properties ...
1. Log in to MySQL database mysql -u root -p View...
We don’t often encounter 404 pages when we browse...