separator-color
The color of the row and column separator of a table cell. To style a specific separator use side-specific settings suchs as row-separator-color
and column-separator-color
.
Variants
Setting Name | Default value | Description |
---|---|---|
row-separator-color |
rgb(0,0,0) |
Color of the row separator at the bottom side of a table cell. |
column-separator-color |
rgb(0,0,0) |
Color of the column separator at the right hand side of a table cell. |
Availability
Available in: Table Cell, Table
Type
Default value
rgb(0,0,0)
Inherited
Yes.
Example
// Use white separators to distingush rows with a solid background
table-cell {
cell-color: #0000ff
separator-style: solid
separator-width: 1pt
separator-color: #ffffff
}