There are text and pictures in the a tag. How to hide the text and only show the picture?

There are text and pictures in the a tag. How to hide the text and only show the picture?

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

<<:  Vue implements simple notepad function

>>:  How to adapt CSS to iPhone full screen

Recommend

Flex layout realizes the layout mode of upper and lower fixed and middle sliding

This article mainly introduces the layout method ...

Detailed tutorial on deploying Apollo custom environment with docker-compose

Table of contents What is the Apollo Configuratio...

How to use Xtrabackup to back up and restore MySQL

Table of contents 1. Backup 1.1 Fully prepared 1....

How to Enable or Disable Linux Services Using chkconfig and systemctl Commands

This is an important (and wonderful) topic for Li...

MySQL 8.0.13 installation and configuration tutorial under CentOS7.3

1. Basic Environment 1. Operating system: CentOS ...

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

How to install and configure the Docker Compose orchestration tool in Docker.v19

1. Introduction to Compose Compose is a tool for ...

What is a MySQL index? Ask if you don't understand

Table of contents Overview From Binary Tree to B+...

Tips for organizing strings in Linux

In Linux operations, we often replace and count s...

Summary of MySQL character sets

Table of contents Character Set Comparison Rules ...

Quickly master the use of Docker to build a development environment

As the platform continues to grow, the project...

javascript to switch by clicking on the picture

Clicking to switch pictures is very common in lif...

How to use iostat to view Linux hard disk IO performance

TOP Observation: The percentage of CPU time occup...