CSS HACK for IE6/IE7/IE8/IE9/FF (summary)

CSS HACK for IE6/IE7/IE8/IE9/FF (summary)

Since I installed the official version of IE8.0, I have summarized several basic CSS HACKs. I hope it will be helpful to those who implement DIV+CSS in the front-end layout of web pages.
This article mainly focuses on: IE6+IE7+IE8+IE9+FF

HACK principle : Different browsers recognize different characters differently (after reading the article, you will find that FF and IE8 have exactly the same ability to recognize the following characters)
Commonly used special character recognition table in CSS:
(1) *: IE6+IE7 can recognize *, but standard browsers FF+IE8 cannot recognize *;
(2) !important: Except for IE6, FF+IE8+IE7 can recognize !important.
(3)_: Except for IE6, FF+IE8+IE7 do not support_;
(4)\9: All IE browsers recognize (IE6, IE7, IE8, IE9)
(5)\0: Only valid for IE8

Example :
(1) Differences between FF (IE8) and IE6 and IE7
backgorund:orange; The background color of FF and IE8 will be orange
*backgorund:red; IE6 and IE7 background color will be red
(2) Differences between FF (IE8) and IE6 and IE7
background:orange; FF and IE8 background color will be orange
*background:red !important; IE7 background color will be red
*background:blue; IE6 background color will be blue
(3) Differences between FF (IE8) and IE6 and IE7
background:orange; FF and IE8 background color will be orange
*background:red; IE7 background color will be red
_background:blue; IE6 background color will be blue
(4) Differences between FF and IE6 IE7 E8
color:gray; The font color of non-IE browsers such as FF will be gray
color:red\9; IE8 IE9 font color will be red

You can understand it at a glance :

Copy code
The code is as follows:

<style>
div{
width:400px;
height:400px;
background-color:red;
background-color:blue\9; /*All IE*/
background-color:yellow\0; /*IE8 hack*/
_background-color:#CDCDCD; /* ie 6*/
*+html background-color:white; /*IE7 only*/
*background-color:pink; /*IE6 IE7 hack*/
@background-color:white; /*opera hack*/
}
</style>

<<:  Introduction to JavaScript array deduplication and flattening functions

>>:  A practical record of checking and processing duplicate MySQL records on site

Recommend

How to handle spaces in CSS

1. Space rules Whitespace within HTML code is usu...

The difference between distinct and group by in MySQL

Simply put, distinct is used to remove duplicates...

Using Docker run options to override settings in the Dockerfile

Usually, we first define the Dockerfile file, and...

Introduction to installing JDK under Linux, including uninstalling OpenJDK

1. View openjdk rpm -qa|grep jdk 2. Delete openjd...

In-depth analysis of nginx+php-fpm service HTTP status code 502

One of our web projects has seen an increase in t...

Implementing WeChat tap animation effect based on CSS3 animation attribute

Seeing the recent popular WeChat tap function, I ...

In-depth explanation of Session and Cookie in Tomcat

Preface HTTP is a stateless communication protoco...

Detailed explanation of nginx optimization in high concurrency scenarios

In daily operation and maintenance work, nginx se...

MySQL deadlock routine: inconsistent batch insertion order under unique index

Preface The essence of deadlock is resource compe...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...

Implementation of fastdfs+nginx cluster construction

1. Introduction to fastdfs 1. What is fastdfs Fas...