How to write a picture as a background and a link (background picture plus link)

How to write a picture as a background and a link (background picture plus link)

The picture is used as the background and the link is written. For example, the logo image of the website. For example: Potato logo image

<a title="Tudou.com Everyone is the director of life" href="https://www.jb51.net">Tudou.com</a>

a {display: block;width: 170px;height: 42px;text-indent: -9999px;background: url(/skin/__g/img/ui/nav/v2_v6.png) 0 0 no-repeat;}
Due to z-indent, the three words "Tudou.com" will not be displayed. The title attribute is the text that will be displayed when the mouse is pointing at it.
The background image of the <a><span> link is not fully displayed under normal circumstances, because the <a> link is an inline element and the width and height attributes in the a tag CSS are invalid.

The improvement method is to use display:block; or display:inline-block; in CSS and then set the width and height.

<<:  Detailed steps for installing nodejs environment and path configuration in Linux

>>:  Some issues we should pay attention to when designing a web page

Recommend

Detailed explanation of custom instructions for Vue.js source code analysis

Preface In addition to the default built-in direc...

Solution to Incorrect string value in MySQL

Many friends will report the following error when...

Detailed explanation of the usage of 5 different values ​​of CSS position

The position property The position property speci...

HTML table markup tutorial (6): dark border color attribute BORDERCOLORDARK

In a table, you can define the color of the lower...

HTML Marquee character fragment scrolling

The following are its properties: direction Set th...

How to bind Docker container to external IP and port

Docker allows network services to be provided by ...

Document Object Model (DOM) in JavaScript

Table of contents 1. What is DOM 2. Select elemen...

How to optimize MySQL index function based on Explain keyword

EXPLAIN shows how MySQL uses indexes to process s...

Life cycle and hook functions in Vue

Table of contents 1. What is the life cycle 2. Th...

HTML reuse techniques

HTML reuse is a term that is rarely mentioned. Tod...

HTML table tag tutorial (35): cross-column attribute COLSPAN

In a complex table structure, some cells span mul...

Implementation of importing and exporting vue-element-admin projects

vue-element-admin import component encapsulation ...

MySQL Optimization Summary - Total Number of Query Entries

1. COUNT(*) and COUNT(COL) COUNT(*) usually perfo...