CSS Tables

Table Properties

  • border-collapse: collapse table borders.
  • border-spacing: space between cells.

Styling Table Elements

Style table, tr, td, and th individually.

Examples

table { border-collapse: collapse; width: 100%; }

th, td { border: 1px solid #ddd; padding: 8px; }