HTML tbody usage

HTML tbody usage
Structured Table (IExplore Only)
1) Group by rows
<thead> ... </thead> - Table header (Header) <tbody> ... </tbody> - Table body (Body) <tfoot> ... </tfoot> - Table footer (Footer)
Example: <table border> <thead> <tr><th>Food</th><th>Drink</th><th>Sweet</th> </thead> <tbody> <tr><td>A</td><td>B</td><td>C</td> <tr><td>D</td><td>E</td><td>F</td> </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> </thead> <tbody> <tr><td>A</td><td>B</td><td>C</td> <tr><td>D</td><td>E</td><td>F</td> </tbody> </table>
3) Column attribute control
<col span=#> #=Number of columns with the specified attributes, 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> </thead> <tbody> <tr><td>A</td><td>B</td><td>C</td> <tr><td>D</td><td>E</td><td>F</td> </tbody> </table>

<<:  CSS3 creates web animation to achieve bouncing ball effect

>>:  Detailed explanation of querying JSON format fields in MySQL

Recommend

uni-app WeChat applet authorization login implementation steps

Table of contents 1. Application and configuratio...

Detailed installation process of nodejs management tool nvm

nvm nvm is responsible for managing multiple vers...

Detailed explanation of CSS sticky positioning position: sticky problem pit

Preface: position:sticky is a new attribute of CS...

Pure CSS to achieve click to expand and read the full text function

Note When developing an article display list inte...

Example of how to achieve ceiling effect using WeChat applet

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

Use of Linux cal command

1. Command Introduction The cal (calendar) comman...

Introduction to MySQL MHA operation status monitoring

Table of contents 1. Project Description 1.1 Back...

JS Canvas interface and animation effects

Table of contents Overview Canvas API: Drawing Gr...

Continuous delivery using Jenkins and Docker under Docker

1. What is Continuous Delivery The software produ...

MySQL transaction, isolation level and lock usage example analysis

This article uses examples to describe MySQL tran...

Vue implements small form validation function

This article example shares the specific code of ...

Introduction to the usage of exists and except in SQL Server

Table of contents 1. exists 1.1 Description 1.2 E...