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

Use of environment variables in Docker and solutions to common problems

Preface Docker can configure environment variable...

Detailed explanation of JavaScript prototype and examples

Table of contents The relationship between the co...

How to monitor Windows performance on Zabbix

Background Information I've been rereading so...

How to add automatic completion commands for docker and kubectl on Mac

Introduction to kubectl kubectl is a command line...

Detailed introduction to linux host name configuration

Table of contents 1. Configure Linux hostname Con...

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

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

10 reasons why Linux is becoming more and more popular

Linux has been loved by more and more users. Why ...

JavaScript to add and delete messages on the message board

This article shares a small example of adding and...

How to manage multiple projects on CentOS SVN server

One demand Generally speaking, a company has mult...

JavaScript implements simple calculator function

This article shares the specific code of JavaScri...

The role of nextTick in Vue and several simple usage scenarios

Purpose Understand the role of nextTick and sever...

Native JS music player

This article example shares the specific code of ...

Detailed explanation of the concept of docker container layers

Table of contents 01 Container consistency 02 Con...

A complete guide to the Docker command line (18 things you have to know)

Preface A Docker image consists of a Dockerfile a...

Linux super detailed gcc upgrade process

Table of contents Preface 1. Current gcc version ...