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
Virtual hosts use special software and hardware t...
There is a big difference between the writing ord...
Preface The reduce() method receives a function a...
1. Title HTML defines six <h> tags: <h1&...
1. Getting started with setUp Briefly introduce t...
The code looks like this: <!DOCTYPE html> &...
letter-spacing property : Increase or decrease th...
1. Use curl command to access by default: # curl ...
Table of contents 1. Check the current status of ...
As the company's influence grows and its prod...
Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...
The communication modes of vue3 components are as...
Pessimistic Lock Pessimistic lock, considers the ...
This article will introduce how to use Docker to ...
This article example shares the specific code of ...