Often you will encounter a style of <a> tag that displays an image, but there is text in the tag and you want to hide the text. In many cases, you will think of text-indent:-9999em; But today I found that the pictures are not displayed in IE7 and 360 default IE mode, so I checked it online and summarized it below: The css writing method in ie7 mode is as follows: Copy code The code is as follows:text-indent: -9999em; overflow: hidden; float: left; //Of course you can also float: right; The above css can already solve this problem. 360 has an IE mode and a speed mode. If you want to open a web page in the default speed mode, just add the following sentence in <head>: Copy code The code is as follows:<meta name="renderer" content="webkit"> Speed mode <meta name="renderer" content="ie-comp"> Compatibility mode <meta name="renderer" content="ie-stand"> IE mode |
<<: Example code for changing the style of other tags by hovering the mouse using CSS
>>: Vue makes a simple random roll call
In the case of complete separation of the front-e...
HTML beginners often encounter the problem of how ...
This article example shares the specific code of ...
Preface Because of project needs, the storage fie...
illustrate: There are two main types of nginx log...
There are many articles about MySQL installation ...
Detailed example of getting the maximum value of ...
Table of contents Project Directory Dockerfile Fi...
Table of contents 1. Display and hide by default ...
Because Ubuntu 20.04 manages the network through ...
As shown below: SELECT prod_name,prod_price FROM ...
<br />Not long ago, due to business needs, I...
The implementation principle of Vue2.0/3.0 two-wa...
Table of contents 1. Table self-sorting 2. Paging...
Table of contents Preface vue-cli 2.0 version vue...