To draw a table in HTML, use the table tag
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
Vertical Header
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
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.
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 to represent spaces. <table border="1"> <tr><td>zdd</td><td>30</td></tr> <tr><td> </td>20</tr> </table> Rendering
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> </td><td>20</td></tr> </table> My Form
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>
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
Problem Description A Spring + Angular project wi...
Table of contents JavaScript Objects 1. Definitio...
Preface smb is the name of a protocol that can be...
The content property was introduced as early as C...
Table of contents 1. Implement the $(".box1&...
Preface Project requirements: Install the Docker ...
Summary of common functions of PostgreSQL regular...
Since I have parsed HTML before, I want to use Vu...
Official documentation: https://dev.mysql.com/doc...
Preface When I was studying the front end before,...
This article shares the specific code of the WeCh...
MySQL8.0.22 installation and configuration (super...
HTML operation principle: 1. Local operation: ope...
introduction Sometimes, if there are a large numb...
Copy the certificate and key on the web scp -rp -...