separator-width

The width of the row and column separator of a table cell. To style a specific separator use side-specific settings suchs as row-separator-width and column-separator-width.

Variants

Setting Name Default value Description
row-separator-width 1pt Width of the row separator at the bottom side of a table cell.
column-separator-width 5pt Width of the column separator at the right hand side of a table cell.

Availability

Available in: Table Cell, Table

Type

Length

Default value

0pt

Inherited

No.

Example

// All separators are solid and 1pt by default
table-cell {
   separator-style:     solid
   separator-width:     1pt
}

// Use thicker separators below the top header of the table
table-cell :header-top-separator {
   row-separator-width:  2pt
}