Skip to main content

CSS Table Generator

Create beautiful, styled tables with customizable headers, borders, zebra striping, and hover effects.
Preview live and copy the CSS instantly.

NameRoleStatus
John DoeDeveloperActive
Jane SmithDesignerActive
Bob JohnsonManagerInactive
Alice BrownDeveloperActive
12px
8px
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

.table th {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.table td {
  padding: 12px 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.table tr:nth-child(even) td {
  background-color: #f9fafb;
}

.table tbody tr:hover td {
  background-color: #f3f4f6;
}