Menu
Components & UI
CSS Tables
Borders, striping, and alignment for tables.
1Table Design
Collapse borders and add padding.
Example Code
table {
width: 100%;
border-collapse: collapse;
}
td, th {
border: 1px solid #ddd;
padding: 8px;
}Finished reading?
Mark this topic as complete to track progress.