HTML table tag tutorial (34): row span attribute ROWSPAN

HTML table tag tutorial (34): row span attribute ROWSPAN

In a complex table structure, some cells span multiple cells horizontally, which requires the use of the cross-row attribute ROWSPAN.
Basic syntax
<TD ROWSPAN=VALUE>
Syntax
VALUE represents the number of rows that the cell spans.
File example: 10-32.htm
The ROWSPAN property is used to implement cells that span rows.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-32.htm -->
03 <!-- File Description: Set up a table that spans multiple rows -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Setting a table that spans multiple rows</TITLE>
08 </HEAD>
09 <BODY>
10 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 ALIGN="CENTER">
11 <TR>
12 <TD>Software Category</TD><TD>Software Name</TD>
13 </TR>
14 <TR>
15 <TD RowSpan=3>Web page creation software</TD>
16 <TD>Fireworks</TD>
17 </TR>
18 <TR>
19 <TD>Dreamweaver</TD>
20 </TR>
21 <TR>
22 <TD>Flash</TD>
23 </TR>
24 </TABLE>
25 </BODY>
26 </HTML>
File description <br />The first cell in row 15 spans 3 rows.

<<:  Vite+Electron to quickly build VUE3 desktop applications

>>:  Why MySQL does not recommend deleting data

Recommend

Tutorial on installing and configuring remote login to MySQL under Ubuntu

This article shares the MySQL installation and co...

An audio-visual Linux distribution that appeals to audiophiles

I recently stumbled upon the Audiovisual Linux Pr...

Why is it not recommended to use an empty string as a className in Vue?

Table of contents Compare the empty string '&...

MySQL isolation level detailed explanation and examples

Table of contents 4 isolation levels of MySQL Cre...

When is it appropriate to use dl, dt, and dd?

dl:Definition list Definition List dt:Definition t...

Detailed analysis of binlog_format mode and configuration in MySQL

There are three main ways of MySQL replication: S...

Summary of uncommon operators and operators in js

Summary of common operators and operators in java...

Some questions about hyperlinks

<br />I am very happy to participate in this...

Detailed explanation of nginx's default_server definition and matching rules

The default_server directive of nginx can define ...

javascript Blob object to achieve file download

Table of contents illustrate 1. Blob object 2. Fr...

Initial summary of the beginner's website building tutorial

After writing these six articles, I started to fee...

Detailed explanation of scheduled tasks for ordinary users in Linux

Preface Ordinary users define crontab scheduled t...

How to implement logic reuse with Vue3 composition API

Composition API implements logic reuse steps: Ext...

Detailed explanation of how to write mysql not equal to null and equal to null

1. Table structure 2. Table data 3. The query tea...

Solution to mysql failure to start due to insufficient disk space in ubuntu

Preface Recently, I added two fields to a table i...