HTML table tag tutorial (44): table header tag

HTML table tag tutorial (44): table header tag
<br />In order to clearly distinguish the table structure in the source code, the HTML language specifies three tags: <thead>, <tbody>, and <tfoot>, which correspond to the table header, table body, and table footer respectively. The <thead> tag is used to define the style of the header at the top of the table.
Basic syntax <head align=value1 bgcolor=color_value valign=value2>
Syntax
Align stands for horizontal alignment, where Left means left, Center means center, and Right means right. valign stands for vertical alignment, Top means top, Middle means center, and Bottom means bottom. File example: 10-44.htm
Set the table header style by tag.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-44.htm -->
03 <!-- File Description: Set the table header style-->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>Set table header style</title>
08 </head>
09 <body>
10 <table border=3 width=400 height=100 bordercolor=#336699 align="Center">
11 <thead align=center bgcolor=#00ccff>
12 <tr>
13 <td colspan=2>Web page creation software</td>
14 </tr>
15 </thead>
16 <tr>
17 <td>Web Graphics Software</td><td>Fireworks</td>
18 </tr>
19 <tr>
20 <td>Web page creation software</td><td>Dreamweaver</td>
21 </tr>
22 <tr>
23 <td>Web animation software</td><td>Flash</td>
24 </tr>
25 </table>
26 </body>
27 </html> The file shows that line 11 defines the style of the table header, and line 15 sets the end of the table header.

<<:  Vue implements table paging function

>>:  How to split and merge multiple values ​​in a single field in MySQL

Recommend

JavaScript implements mouse control of free moving window

This article shares the specific code of JavaScri...

Vue implements various ideas for detecting sensitive word filtering components

Table of contents Written in front Requirements A...

3 methods to restore table structure from frm file in mysql [recommended]

When mysql is running normally, it is not difficu...

js to realize the mouse following game

This article shares the specific code of js to im...

Sample code for implementing multi-application deployment using tomcat+nginx

Table of contents Multi-application deployment 1-...

Solution to the ineffective margin of div nested in HTML

Here's a solution to the problem where margin...

Briefly describe how to install Tomcat image and deploy web project in Docker

1. Install Tomcat 1. Find the tomcat image on Doc...

Centos8 bridge static IP configuration method in VMware virtual machine

1. Make sure the network connection method is bri...

Vue implements dynamic circular percentage progress bar

Recently, when developing a small program, I enco...

Summary of Vue's cross-domain problem handling and solutions

When you send a network request, the following sa...

iview implements dynamic form and custom verification time period overlap

Dynamically adding form items iview's dynamic...

Example of how to implement embedded table with vue+elementUI

During my internship in my senior year, I encount...

How to add file prefixes in batches in Linux

You need to add "gt_" in front of the f...

Data URI and MHTML complete solution for all browsers

Data URI Data URI is a scheme defined by RFC 2397...