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

Detailed explanation of MySQL database paradigm

Preface: I have often heard about database paradi...

Detailed explanation of the correct use of the count function in MySQL

1. Description In MySQL, when we need to get the ...

How to Learn Algorithmic Complexity with JavaScript

Table of contents Overview What is Big O notation...

Sharing of the fast recovery solution for Mysql large SQL files

Preface In the process of using MySQL database, i...

Summary of common sql statements in Mysql

1. mysql export file: SELECT `pe2e_user_to_compan...

Vue realizes click flip effect

Use vue to simply implement a click flip effect f...

How to realize vertical arrangement of text using CSS3

In a recent project, I wanted to align text verti...

Linux uses join -a1 to merge two files

To merge the following two files, merge them toge...

nginx proxy_cache batch cache clearing script introduction

Preface: I used the official nginx proxy_cache as...

Summary of front-end knowledge in the Gokudō game

background In the early stages of learning Japane...

WeChat applet implements a simple calculator

A simple calculator written in WeChat applet for ...

Detailed explanation of the 4 codes that turn the website black, white and gray

The 2008.5.12 Wenchuan earthquake in Sichuan took...

Basic operations on invisible columns in MySQL 8.0

Table of contents 01 Create invisible columns 02 ...