Let the web page automatically call the dual-core browser's high-speed mode (Webkit)

Let the web page automatically call the dual-core browser's high-speed mode (Webkit)
Code Sample

Add a line of code in the head tag:
XML/HTML CodeCopy content to clipboard
  1. < html >   
  2.    < head >   
  3.      < meta   name = "renderer"   content = "webkit|ie-comp|ie-stand" >   
  4.    </ head >   
  5.    < body >   
  6.    </ body >   
  7. </ html >   
The value of content is one of webkit, ie-comp, and ie-stand, which is case-sensitive and represents the webkit kernel, IE compatible kernel, and IE standard kernel respectively.

If the page needs to use the speed kernel by default, add the tag: <meta name="renderer" content="webkit">
If the page needs to use IE-compatible kernel by default, add the tag: <meta name="renderer" content="ie-comp">
If the page needs to use the IE standard kernel by default, add the tag: <meta name="renderer" content="ie-stand">
Technical details of each rendering core

Kernel Webkit IE Compatibility IE Standards
Document Mode Chrome 21 IE6/7 IE9/IE10/IE11 (depending on the user's IE)
HTML5 support YES NO YES
ActiveX Control Support NO YES YES

UA examples for each kernel

<<:  Detailed installation process and basic usage of MySQL under Windows

>>:  The difference between z-index: 0 and z-index: auto in CSS

Recommend

Springboot+VUE to realize login and registration

This article example shares the specific code of ...

Vue Page Stack Manager Details

Table of contents 2. Tried methods 2.1 keep-alive...

Detailed explanation of Vue's sync modifier

Table of contents 1. Instructions 2. Modifiers 3....

Web page printing thin line table + page printing ultimate strategy

When I was printing for a client recently, he aske...

Docker deployment of Kafka and Spring Kafka implementation

This article mainly introduces the deployment of ...

How to connect to MySQL using C++

C++ connects to MySQL for your reference. The spe...

The difference and usage of distinct and row_number() over() in SQL

1 Introduction When we write SQL statements to op...

JavaScript form validation example

HTML forms are commonly used to collect user info...

How to configure environment variables in Linux environment

JDK download address: http://www.oracle.com/techn...

How to implement Svelte's Defer Transition in Vue

I recently watched Rich Harris's <Rethinki...

Superficial Web Design

<br />I have always believed that Yahoo'...

Detailed explanation of NodeJS modularity

Table of contents 1. Introduction 2. Main text 2....

CSS Standard: vertical-align property

<br />Original text: http://www.mikkolee.com...