Table td picture horizontally and vertically centered code

Table td picture horizontally and vertically centered code
Html code:

Copy code
The code is as follows:

<td align="center" valign="middle">
<img src="images/checkBox.png"/>
</td>

Among them, align="center" means horizontal centering;
valign="middle" means vertical centering. This attribute is sometimes not useful.
It can also be set via style:

Html code:

Copy code
The code is as follows:

<td style="text-align: center;">
<img style="vertical-align:middle;" src="images/checkBox.png"/>
</td>

<<:  How to inherit CSS line-height

>>:  Introduction to Computed Properties in Vue

Recommend

Detailed explanation of the spacing problem between img tags

IMG tag basic analysis In HTML5, the img tag has ...

A quick solution to accidentally delete MySQL data (MySQL Flashback Tool)

Overview Binlog2sql is an open source MySQL Binlo...

WeChat applet implements the Record function

This article shares the specific code for the WeC...

How to Communicate with Other Users on the Linux Command Line

It's easy to send messages to other users in ...

Use xshell to connect to the Linux server

Benefits of using xshell to connect to Linux We c...

Detailed explanation of MySQL master-slave inconsistency and solutions

1. MySQL master-slave asynchrony 1.1 Network Dela...

Implement QR code scanning function through Vue

hint This plug-in can only be accessed under the ...

JavaScript object built-in objects, value types and reference types explained

Table of contents Object Object Definition Iterat...

Steps for restoring a single MySQL table

When I was taking a break, a phone call completel...

Full HTML of the upload form with image preview

The upload form with image preview function, the ...

Example of how to achieve ceiling effect using WeChat applet

Table of contents 1. Implementation 2. Problems 3...

The latest version of MySQL5.7.19 decompression version installation guide

MySQL version: MySQL Community Edition (GPL) ----...

Tutorial diagram of installing TomCat in Windows 10

Install TomCat on Windows This article will intro...

Summary of methods to prevent users from submitting forms repeatedly

Duplicate form submission is the most common and ...

Connector configuration in Tomcat

JBoss uses Tomcat as the Web container, so the co...