Which of the following CSS property defines the space between cells in...
border-spacing property defines the space between cells in a table.
Syntax:
border-spacing: non-negative length(s) | inherit
Which of the following CSS property defines the space between cells in...
border-spacing is the correct CSS property that defines the space between cells in a table.
HTML Structure:
To understand how border-spacing works, let's first consider the basic structure of an HTML table. A table consists of rows (\) and cells (\). Cells are enclosed within the row tags.
CSS Property:
Now, let's focus on the CSS property border-spacing and how it affects the spacing between cells in a table.
Definition:
The border-spacing property controls the space between the borders of adjacent cells in a table. It specifies the distance between the borders of neighboring cells, both horizontally and vertically.
Usage:
To apply the border-spacing property to a table, we use the table selector in CSS and set the value of border-spacing to define the desired space between cells.
Example:
Here's an example of how to use the border-spacing property:
```css
table {
border-spacing: 10px; /* spacing between cells */
}
```
In this example, the border-spacing is set to 10 pixels, which means there will be a space of 10 pixels between the borders of adjacent cells in the table.
Note: The border-spacing property only works when the border-collapse property is set to separate. If border-collapse is set to collapse, then border-spacing has no effect.
Conclusion:
In conclusion, the border-spacing CSS property is used to define the space between cells in a table. It allows you to control the distance between the borders of adjacent cells, both horizontally and vertically.