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

Realize super cool water light effect based on canvas

This article example shares with you the specific...

Analysis of several reasons why Iframe should be used less

The following graph shows how time-consuming it is...

Detailed explanation of the difference between var, let and const in JavaScript

Table of contents As a global variable Variable H...

MySQL slow query pitfalls

Table of contents 1. Slow query configuration 1-1...

A brief discussion on the lazy loading attribute pattern in JavaScript

Table of contents 1. Introduction 2. On-demand at...

jQuery implements navigation bar effect with expansion animation

I designed and customized a navigation bar with a...

Detailed explanation of mysql deadlock checking and deadlock removal examples

1. Query process show processlist 2. Query the co...

Steps to export the fields and related attributes of MySQL tables

Need to export the fields and properties of the t...

Practical solution for Prometheus container deployment

environment Hostname IP address Serve Prometheus ...

Brief analysis of the introduction and basic usage of Promise

Promise is a new solution for asynchronous progra...

Instructions for using the meta viewport tag (mobile browsing zoom control)

When OP opens a web page with the current firmwar...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

Use of Linux gzip command

1. Command Introduction The gzip (GNU zip) comman...

Detailed explanation of common methods of JavaScript Array

Table of contents Methods that do not change the ...

HTML+CSS3 code to realize the animation effect of the solar system planets

Make an animation of the eight planets in the sol...