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

Introduction to using MySQL commands to create, delete, and query indexes

MySQL database tables can create, view, rebuild a...

Solution to the automatic stop of MySQL service

This article mainly introduces the solution to th...

14 practical experiences on reducing SCSS style code by 50%

Preface Sass is an extension of the CSS3 language...

The whole process record of Vue export Excel function

Table of contents 1. Front-end leading process: 2...

Understanding Nginx Current Limitation in One Article (Simple Implementation)

Nginx is now one of the most popular load balance...

Solution to MySQL server login error ERROR 1820 (HY000)

Fault site: Log in to the MySQL server and get th...

Tutorial on installing MySQL 5.7.18 decompressed version on Windows

1. Installation process MySQL version: 5.7.18 1. ...