The contents of the table in HTML are displayed horizontally and vertically in the center

The contents of the table in HTML are displayed horizontally and vertically in the center

Specify in CSS style file

#class td /*Set the table text to be aligned left and right and top and bottom*/ 
{  
    vertical-align: middle;
    text-align: center;  
}
/*class is the class it belongs to*/
<div id="class" align="center" style="margin: 0cm 0cm 0pt; text-align: left">                                                                      
<table class="table table-bordered" border="1" width="100%" style="font-size: 14pt; color: #000000; font-family: 楷体;mso-ascii-font-family: 'times new roman'; mso-hansi-font-family: 'times new roman'">                                                             
<caption><h2 style="text-align: left;font-size: 16pt;font-family: 宋体;color: red;">title</h2><
/caption>                                                              
<tbody>                                                                 
<tr style="font-weight: bold;mso-bidi-font-size: 12.0pt;font-family: 宋体;" >                                                                      
<td>Serial number</td>                                                                      
<td>Applicable situations</td>                                                                      
 <td>Details</td>                                                                       
<td>Remarks</td>                                                                   
 </tr>                                                                                                                                       
<tr>                                                                    
<td>1</td>                                                                     
<td>xxxxx</td>                                                                      
<td style="text-align: left;"> <!--Specify left alignment-->                                                                     
 <span>                                                                             
xxxxxx<br>                                                                                                                                                        
</span>                                                                      
</td>                                                                       
<td><a href="#">View details</a>
</td>                                                              
</tr>                                                
</tbody>                                                          
</table> 
</div>

The above specifies id as class in div, then the attribute td of table uses the style specified in css, as shown in the figure

這里寫圖片描述

The above is what I introduced to you about the horizontal and vertical centering of the table content in HTML. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  How to encapsulate axios in Vue

>>:  Detailed explanation of the use of MySQL concatenation function CONCAT

Recommend

Summary and examples of vue3 component communication methods

The communication modes of vue3 components are as...

Vue component to realize carousel animation

This article example shares the specific code of ...

Installation steps of docker-ce on Raspberry Pi 4b ubuntu19 server

The Raspberry Pi model is 4b, 1G RAM. The system ...

HTML cellpadding and cellspacing attributes explained in pictures

Cell -- the content of the table Cell margin (tabl...

Docker installation and configuration image acceleration implementation

Table of contents Docker version Install Docker E...

Detailed explanation of how to quickly build a blog website using Docker

Table of contents 1. Preparation 2. Deployment Pr...

Practice of dynamically creating dialog according to file name in vue+el-element

Table of contents background accomplish 1. Encaps...

The difference between Display, Visibility, Opacity, rgba and z-index: -1 in CSS

We often need to control the hidden, transparent ...

Join operation in Mysql

Types of joins 1. Inner join: The fields in the t...

Table shows the border code you want to display

Common properties of tables The basic attributes ...

Detailed explanation of how to monitor MySQL statements

Quick Reading Why do we need to monitor SQL state...