HTML table markup tutorial (15): table title

HTML table markup tutorial (15): table title
<br />This tag can be used to directly add a table title and control the arrangement properties of the title text.
Basic syntax
<Caption>…</Caption>
Syntax
The content between the <Caption> tags is the title content, this tag is used in the <table> tag.
File example: 10-14.htm
The title of the table is set by the <Caption> tag.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-14.htm -->
03 <!-- File Description: Set the title of the table-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the table title</TITLE>
08 </HEAD>
09 <BODY>
10 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 ALIGN="CENTER">
11 <CAPTION>Mainstream web design software</CAPTION>
12 <TR>
13 <TD>Web Image Software</TD>
14 <TD>Fireworks</TD>
15 </TR>
16 <TR>
17 <TD>Web page creation software</TD>
18 <TD>Dreamweaver</TD>
19 </TR>
20 <TR>
21 <TD>Web animation software</TD>
22 <TD>Flash</TD>
23 </TR>
24 </TABLE>
25 </BODY>
26 </HTML>
File Description <br />Line 11 defines the title text of the table.

<<:  Steps to split and compress CSS with webpack and import it with link

>>:  Some problems you may encounter when installing MySQL

Recommend

Web front-end performance optimization

Web front-end optimization best practices: conten...

Detailed process of getting started with docker compose helloworld

Prerequisites Compose is a tool for orchestrating...

Implementation of fuzzy query like%% in MySQL

1, %: represents any 0 or more characters. It can...

Vue calls the computer camera to realize the photo function

This article example shares the specific code of ...

Summary of methods to improve mysql count

I believe many programmers are familiar with MySQ...

How to mount a disk in Linux and set it to automatically mount on boot

Knowing that everyone's time is precious, I w...

Detailed explanation of the application of the four states of hyperconnection

Although you think it may be a browser problem, i...

Ubuntu installation cuda10.1 driver implementation steps

1. Download cuda10.1: NVIDIA official website lin...

CocosCreator Universal Framework Design Network

Table of contents Preface Using websocket Constru...

The neglected special effects of META tags (page transition effects)

Using js in web design can achieve many page effec...

MySQL optimization query_cache_limit parameter description

query_cache_limit query_cache_limit specifies the...

JavaScript to implement limited time flash sale function

This article shares the specific code of JavaScri...

CSS--overflow:hidden in project examples

Here are some examples of how I use this property ...

Implementation of vue3.0+vant3.0 rapid project construction

Table of contents 1. Project Construction 2. Vue3...