Some properties in CSS are preceded by "*" or "_".

Some properties in CSS are preceded by "*" or "_".

Some properties in CSS are preceded by "*" or "_".

Identify different browsers

For example:

color{
         background-color: #CC00FF; /*All browsers will display it as purple*/
         background-color: #FF0000\9; /*IE6, IE7, IE8 will display red*/
         *background-color: #0066FF; /*IE6 and IE7 will turn blue*/
         _background-color: #009933; /*IE6 will turn green*/
}
body{

        background:red; /*For Firefox and other browsers;*/
        *background:blue !important; /*For IE7, IE7 can recognize both the * sign and important; */
        *background: green; /*Even IE6 can recognize the * number*/
}

Summarize

The above is what I introduced to you. Some attributes in CSS will be preceded by "*" or "_" which means something. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Analysis of basic usage of ul and li

>>:  Solution to the problem that Docker container cannot access Jupyter

Recommend

Nginx implements https website configuration code example

https base port 443. It is used for something cal...

Ubuntu 20.04 Chinese input method installation steps

This article installs Google Input Method. In fac...

Detailed process of implementing the 2048 mini game in WeChat applet

Rendering Example Code Today we are going to use ...

MySQL Workbench download and use tutorial detailed explanation

1. Download MySQL Workbench Workbench is a graphi...

JDBC Exploration SQLException Analysis

1. Overview of SQLException When an error occurs ...

Vue+Vant implements the top search bar

This article example shares the specific code of ...

What are the attributes of the JSscript tag

What are the attributes of the JS script tag: cha...

Introduction to setting up Tomcat to start automatically on Linux system

1. Enter the /etc/init.d directory: cd /etc/init....

Detailed explanation of viewing and setting SQL Mode in MySQL

Viewing and Setting SQL Mode in MySQL MySQL can r...

How to set static IP for Ubuntu 18.04 Server

1. Background Netplan is a new command-line netwo...

Explore VMware ESXI CLI common commands

Table of contents 【Common commands】 [Summary of c...

Why is it not recommended to use index as the key attribute value in Vue?

Table of contents Preface The role of key The rol...