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

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the follo...

How to implement JavaScript output of Fibonacci sequence

Table of contents topic analyze Basic solution Ba...

A brief analysis of different ways to configure static IP addresses in RHEL8

While working on a Linux server, assigning static...

Correct way to load fonts in Vue.js

Table of contents Declare fonts with font-face co...

Docker+nextcloud to build a personal cloud storage system

1. Docker installation and startup yum install ep...

Solution to the problem that the docker container cannot be stopped

The solution is as follows: 1. Force delete conta...

Install Zookeeper under Docker (standalone and cluster)

After starting Docker, let's take a look at t...

How to encapsulate axios in Vue

Table of contents 1. Installation 1. Introduction...

js to achieve the effect of light switch

This article example shares the specific code of ...

Summary of learning Docker commands in one article

Table of contents Introduction Mirror repository ...

Vue directives v-html and v-text

Table of contents 1. v-text text rendering instru...

Sharing of the fast recovery solution for Mysql large SQL files

Preface In the process of using MySQL database, i...