Usage and description of HTML tag tbody

Usage and description of HTML tag tbody
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

Recommend

Detailed steps for configuring virtual hosts in nginx

Virtual hosts use special software and hardware t...

Simply understand the writing and execution order of MySQL statements

There is a big difference between the writing ord...

JavaScript array reduce() method syntax and example analysis

Preface The reduce() method receives a function a...

Commonly used HTML format tags_Powernode Java Academy

1. Title HTML defines six <h> tags: <h1&...

The complete usage of setup, ref, and reactive in Vue3 combination API

1. Getting started with setUp Briefly introduce t...

How to directly reference vue and element-ui in html

The code looks like this: <!DOCTYPE html> &...

CSS controls the spacing between words through the letter-spacing property

letter-spacing property : Increase or decrease th...

How to hide and forge version number in Nginx

1. Use curl command to access by default: # curl ...

CentOS7 firewall and port related commands introduction

Table of contents 1. Check the current status of ...

Summary of web designers' experience and skills in learning web design

As the company's influence grows and its prod...

Introduction to the use of common Dockerfile commands

Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...

Summary and examples of vue3 component communication methods

The communication modes of vue3 components are as...

Examples of using MySQL pessimistic locking and optimistic locking

Pessimistic Lock Pessimistic lock, considers the ...

Docker installation of MySQL (8 and 5.7)

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

js canvas realizes slider verification

This article example shares the specific code of ...