The tbody element should be used in conjunction with thead and tfoot elements. Structured Table (IExplore Only) 1. Group by rows <thead> ... </thead> - the header of the table <tbody> ... </tbody> - the body of the table <tfoot> ... </tfoot> - Table footer example: <table border> <thead> <tr><th>Food</th><th>Drink</th><th>Sweet</th></tr> </thead> <tbody> <tr><td>A</td><td>B</td><td>C</td></tr> <tr><td>D</td><td>E</td><td>F</td></tr> </tbody> </table> 2. Group by columns <colgroup align=#> #=left, right, center example: <table border width=160> <colgroup align=left> <colgroup align=center> <colgroup align=right> <thead> <tr><th>Food</th><th>Drink</th><th>Sweet</th></tr> </thead> <tbody> <tr><td>A</td><td>B</td><td>C</td></tr> <tr><td>D</td><td>E</td><td>F</td></tr> </tbody> </table> 3. Column attribute control <col span=#> #=Number of columns with the specified attribute, starting from the left <col align=#> #=left, right, center example: <table border width=160> <colgroup> <col align=center span=2> <colgroup align=right> <thead> <tr><th>Food</th><th>Drink</th><th>Sweet</th></tr> </thead> <tbody> <tr><td>A</td><td>B</td><td>C</td></tr> <tr><td>D</td><td>E</td><td>F</td></tr> </tbody> </table> |
<<: Database issues and pitfalls in connecting to cloud servers with Navicat Premium15
>>: Teach you to implement a simple promise step by step
This article shares the specific code of js+Html ...
Anaconda Installation Anaconda is a software pack...
It’s great to use CSS to realize various graphics...
MySQL 8 brings a brand new experience, such as su...
Table of contents Preface Front-end structure Bac...
When mysql is running normally, it is not difficu...
Upgrade process: Original system: CentOS7.3 [root...
Storage Engine What is a database storage engine?...
Overview Let's summarize some SQL statements ...
Preface In Java programming, most applications ar...
I have summarized 3 methods to deploy multiple fr...
To implement the "Enter != Submit" probl...
This article shares the specific code of JavaScri...
RGBA is a CSS color that can set color value and ...