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

Method of Vue component document generation tool library

Table of contents Parsing .vue files Extract docu...

How to configure MySQL on Ubuntu 16.04 server and enable remote connection

background I am learning nodejs recently, and I r...

Vue+echarts realizes progress bar histogram

This article shares the specific code of vue+echa...

Detailed explanation of the difference between flex and inline-flex in CSS

inline-flex is the same as inline-block. It is a ...

Analysis of the ideas of implementing vertical tables in two ways in Vue project

Problem Description In our projects, horizontal t...

JavaScript data visualization: ECharts map making

Table of contents Overview Precautions 1. Usage 2...

Detailed explanation of the use of HTML header tags

HTML consists of two parts: head and body ** The ...

OpenSSL implements two-way authentication tutorial (with server and client code)

1. Background 1.1 Problems A recent product testi...

js+Html to realize table editable operation

This article shares the specific code of js+Html ...

SSM implements the mysql database account password ciphertext login function

introduction Our company is engaged in the resear...

Nginx/Httpd load balancing tomcat configuration tutorial

In the previous blog, we talked about using Nginx...