HTML table_Powernode Java Academy

HTML table_Powernode Java Academy

To draw a table in HTML, use the table tag

  • tr means row
  • td indicates column
  • th means table header, which is usually used for column name.

Here is an example.

<html>
    <head>
        <title>Table in html</title>
    </head>
    <body>
        <p>Horizontal header</p>
        <table border="1">
         <tr>
            <th>Name</th>
            <th>Age</th>
            <th>Gender</th>
         </tr>
         <tr>
            <td>zdd</td>
            <td>30</td>
            <td>male</td>
         </tr>
         </table>
         <p>Vertical header</p>
         <table border="1">
         <tr>
            <th>Name</th>
            <td>autumn</td>
         </tr>
         <tr>
            <th>Age</th>
            <td>30</td>
         </tr>
         <tr>
            <th>Gender</th>
            <td>famale</td>
         </tr>
        </table>
    </body>
</html>

Rendering

Horizontal header

Name
Age
Gender
zd
30
male

Vertical Header

Name
autumn
Age
30
Gender
female

Borderless table

If you do not specify the border attribute when defining a table, the table will have no borders.

<table>
    <tr><td>zdd</td><td>30</td></tr>
    <tr><td>ddz</td><td>27</td></tr>
</table>

Rendering

zd
30
ddz
27

Empty cells

If no content is specified for a cell, the cell will be empty and have no border, as shown below, which is not very beautiful.

zd
30
27

What if it is solved? The method is to add spaces to empty cells. Since HTML ignores extra spaces, we cannot add spaces directly, but need to add &nbsp; nbsp to represent spaces.

<table border="1">
    <tr><td>zdd</td><td>30</td></tr>
    <tr><td>&nbsp;</td>20</tr>
</table>

Rendering

zd
30
20

Table with title

Use the caption attribute, but it seems that there cannot be spaces in the title, otherwise it will wrap when displayed!

<table border="1">
<caption>My form</caption>
    <tr><td>zdd</td><td>30</td></tr>
    <tr><td>&nbsp;</td><td>20</td></tr>
</table>

My Form

zd
30
20

Tables that span rows or columns

Use colspan to span lines

<table border="1">
<tr><th>Name</th><th colspan="2">Phone</th></tr>
Bill Gates 555 77 854 555 77 855
</table> 

Name
Telephone
Bill Gates
555 77 854
555 77 855

Using rowspan to span columns

<table border="1">
<tr><th>Name</th><td>Bill Gates</td></tr>
<tr><th rowspan="2">Telephone</th><td>555 77 854</td></tr>
<tr><td>555 77 855</td></tr>
</table>

Nested tables

The table tag can be nested, which means that you can create a table within a table by adding a table tag to a tr or td tag.

<<:  Basic ideas for finding errors in Web front-end development

>>:  Problems encountered when updating the auto-increment primary key id in Mysql

Recommend

HTML uses form tags to implement the registration page example code

Case Description: - Use tables to achieve page ef...

MySQL transaction isolation level details

serializable serialization (no problem) Transacti...

Detailed steps to install the specified version of docker (1.12.6) using rpm

1. Reasons If the system is Centos7.3, the Docker...

How to check and organize website files using Dreamweaver8

What is the purpose of creating your own website u...

A detailed introduction to the use of block comments in HTML

Common comments in HTML: <!--XXXXXXXX-->, wh...

WeChat applet development practical skills: data transmission and storage

Combining the various problems I encountered in m...

About CSS floating and canceling floating

Definition of Float Sets the element out of the n...

Detailed graphic and text instructions for installing MySQL 5.7.20 on Mac OS

Installing MySQL 5.7 from TAR.GZ on Mac OS X Comp...

Detailed explanation of common methods of Vue development

Table of contents $nextTick() $forceUpdate() $set...

Example code for using text-align and margin: 0 auto to center in CSS

Use text-align, margin: 0 auto to center in CSS W...

How to use uni-app to display buttons and search boxes in the top navigation bar

Recently, the company is preparing to develop an ...

Steps to install superset under win10 system

Superset is a lightweight self-service BI framewo...

Standard summary for analyzing the performance of a SQL statement

This article will introduce how to use explain to...