Description and use of table attributes CellPad, CellSpace and Border in web page production

Description and use of table attributes CellPad, CellSpace and Border in web page production
cellspacing is the distance between cells in the table;
Cellpadding is the blank space within a cell in a table;
Commonly known as external patches and internal patches, similar to margin and padding applied to div and span
You can try it out by adding borders to the cells and changing the values ​​of cellpadding and cellspacing to see what happens.
For example :

Copy code
The code is as follows:

<table>
<tr>
<td style="cellspacing:10px;cellpadding:10px;border:1px solid #CCCCCC;">
</td>
<td style="cellspacing:10px;cellpadding:20px;border:1px solid #CCCCCC;">
</td>
</tr>
</table>

This means that there is a 10 pixel patch (cellspacing) between the border of the td and the edge of the table, and a 20 pixel patch (cellpadding) between the border of the td and the inner elements of the td.

For more table properties, please refer to :
Property ______________Description
width______________The width of the table
height_____________The height of the table
align______________The horizontal position of the table on the page
background_________ The background image of the table
bgcolor____________The background color of the table
border_____________Width of the table border in pixels
bordercolor________ table border color
bordercolorlight_____The color of the bright part of the table border
bordercolordark____The color of the dark part of the table border
cellspacing________the spacing between cells
cellpadding________The amount of space between the cell content and the cell border

<<:  Interpretation of 17 advertising effectiveness measures

>>:  Basic operations on invisible columns in MySQL 8.0

Recommend

mysql error number 1129 solution

SQLyog connects to mysql error number 1129: mysql...

Detailed explanation of Linux index node inode

1. Introduction to inode To understand inode, we ...

Analysis of Mysql transaction characteristics and level principles

1. What is a transaction? A database transaction ...

JavaScript to achieve tab switching effect

This article shares the specific code of JavaScri...

About the usage and precautions of promise in javascript (recommended)

1. Promise description Promise is a standard buil...

A simple example of mysql searching for data within N kilometers

According to the coefficient of pi and the radius...

MySQL high concurrency method to generate unique order number

Preface After this blog post was published, some ...

Summary on Positioning in CSS

There are four types of positioning in CSS, which...

Detailed explanation of MYSQL log and backup and restore issues

This article shares MYSQL logs and backup and res...

How to quickly use mysqlreplicate to build MySQL master-slave

Introduction The mysql-utilities toolset is a col...

MySQL uses the Partition function to implement horizontal partitioning strategy

Table of contents 1 Review 2 Five strategies for ...

Will the index be used in the MySQL query condition?

When an employer asks you whether an index will b...

How to use ElementUI pagination component Pagination in Vue

The use of ElementUI paging component Pagination ...

Detailed explanation of generic cases in TypeScript

Definition of Generics // Requirement 1: Generics...