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
SQLyog connects to mysql error number 1129: mysql...
1. Introduction to inode To understand inode, we ...
When the submenu of the navigation bar is generat...
1. What is a transaction? A database transaction ...
This article shares the specific code of JavaScri...
1. Promise description Promise is a standard buil...
According to the coefficient of pi and the radius...
Preface After this blog post was published, some ...
There are four types of positioning in CSS, which...
This article shares MYSQL logs and backup and res...
Introduction The mysql-utilities toolset is a col...
Table of contents 1 Review 2 Five strategies for ...
When an employer asks you whether an index will b...
The use of ElementUI paging component Pagination ...
Definition of Generics // Requirement 1: Generics...