HTML table markup tutorial (9): cell spacing attribute CELLSPACING

HTML table markup tutorial (9): cell spacing attribute CELLSPACING

A certain distance can be set between cells in a table so that the table does not appear too compact.
Basic syntax
<TABLE CellSpacing=value>
Syntax explanation <br />Cell spacing is in pixels.
File example: 10-9.htm
Set the cell spacing for the table.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-9.htm -->
03 <!-- File Description: Set the cell spacing of the table-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Setting the cell spacing of a table</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 Background=10-8.jpg CellSpacing=10>
12 <TR>
13 <TD>Web Graphics Software</TD><TD>Fireworks</TD>
14 </TR>
15 <TR>
16 <TD>Web page creation software</TD><TD>Dreamweaver</TD>
17 </TR>
18 <TR>
19 <TD>Web animation software</TD><TD>Flash</TD>
20 </TR>
21 </TABLE>
22 </BODY>
23 </HTML>
File Description <br />Line 11 defines the cell spacing of the table to be 10 pixels.

<<:  Mysql Sql statement exercises (50 questions)

>>:  How to use provide to implement state management in Vue3

Recommend

How to Clear Disk Space on CentOS 6 or CentOS 7

Following are the quick commands to clear disk sp...

10 key differences between HTML5 and HTML4

HTML5 is the next version of the HTML standard. M...

Implementation of Nginx configuration of multi-port and multi-domain name access

To deploy multiple sites on a server, you need to...

Vue event's $event parameter = event value case

template <el-table :data="dataList"&...

JavaScript data visualization: ECharts map making

Table of contents Overview Precautions 1. Usage 2...

What is the use of the enctype field when uploading files?

The enctype attribute of the FORM element specifie...

A performance bug about MySQL partition tables

Table of contents 2. Stack analysis using pt-pmap...

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

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

How to use yum to configure lnmp environment in CentOS7.6 system

1. Installation version details Server: MariaDB S...

JavaScript to implement the function of changing avatar

This article shares the specific code of JavaScri...

Share JS four fun hacker background effect codes

Table of contents Example 1 Example 2 Example 3 E...

Building a selenium distributed environment based on docker

1. Download the image docker pull selenium/hub do...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

The perfect solution for highlighting keywords in HTML

I recently encountered a feature while working on...