Compatibility with the inline-block property

Compatibility with the inline-block property
<br />A year ago, there were no articles about the inline-block property on the Internet. In order to help everyone better understand this property, I summarized and compiled an article "In-depth Understanding of display:inline-block" at that time.
Now there are more and more demands for the use of inline-block attribute. Unfortunately, only Firefox 3 beta, IE8 beta, Opera and Safari support inline-block attribute (Note: originally only Opera and Safari supported it). However, IE6 and IE7 can simulate it by triggering hasLayout. Firefox 2 has -moz-inline-box and -moz-inline-stack private attributes (the comparison of these two attributes is quoted from Qin Ge's "Two Examples of Application of display:inline-block").
In actual applications, -moz-inline-box will have problems such as alignment between elements. Although Firefox also has a private attribute -moz-box-align to help solve the alignment problem, it is still difficult to predict and there are many problems. Relatively speaking, -moz-inline-stack behaves more like inline-block, which can be tested in Firefox3. However, there is a bug when using -moz-inline-stack. If the outer element of an element with display:-moz-inline-stack; is display:inline;, the links contained in it will become unclickable in Firefox. This needs to be solved by using position:relative;.
Finally, the code we simulated is as follows:
display:inline-block; /*Supported by Firefox3 beta, IE8 beta, Opera, and Safari, triggers hasLayout of inline elements in IE*/
display:-moz-inline-stack; /* Firefox's private property, you can also use -moz-inline-box */
zoom:1; /*Triggers hasLayout in IE*/
*display:inline; /*Once hasLayout is triggered in IE, setting the block element to inline will make display:inline have the same effect as display:inline-block*/
text-indent:-9999px;
*text-indent:0;
font-size:0;
line-height:0; /* If you need to hide text, you can use these four attributes*/
/* In addition, you can use a simpler method to hide the text above: line-height: super large value; font-size: 0; */
overflow:hidden; /*Hide overflow content*/
vertical-align:middle; /* Vertically center the line, for Opera's large deviation*/
width:? px; /*? Any non-auto value*/
height:? px; /*? Any non-auto value*/

<<:  Nginx server adds Systemd custom service process analysis

>>:  Detailed explanation of the front-end framework for low-threshold development of iOS, Android, and mini-program applications

Recommend

Vue+element+oss realizes front-end fragment upload and breakpoint resume

Pure front-end implementation:切片上傳斷點續傳.斷點續傳needs ...

Node quickly builds the backend implementation steps

1. First install node, express, express-generator...

Graphical tutorial on installing CentOS 7.3 on VMWare

Illustrated CentOS 7.3 installation steps for you...

Detailed explanation of the use of CSS3 rgb and rgba (transparent color)

I believe everyone is very sensitive to colors. C...

VMware Workstation virtual machine installation operation method

Virtual machines are very convenient testing soft...

JavaScript realizes the generation and verification of random codes

The generation and verification of random codes i...

CSS shadow animation optimization tips

This technique comes from this article - How to a...

How to change the root user's password in MySQL

Method 1: Use the SET PASSWORD command mysql> ...

Turn off the AutoComplete function in the input box

Now we can use an attribute of input called autoco...

Web Design Experience: 5 Excellent Web Design Concepts Full Analysis (Pictures)

Unlike other types of design, web design has been ...

Let's talk about the size and length limits of various objects in MySQL

Table of contents Identifier length limit Length ...

Navicat for MySQL 15 Registration and Activation Detailed Tutorial

1. Download Navicat for MySQL 15 https://www.navi...

Linux uses if to determine whether a directory exists.

How to use if in Linux to determine whether a dir...

Detailed explanation of Angular structural directive modules and styles

Table of contents 1. Structural instructions Modu...