20 lines
377 B
SCSS
20 lines
377 B
SCSS
|
// Tables
|
||
|
//
|
||
|
// The `<table>` element displays tabular data in rows, columns, and cells.
|
||
|
|
||
|
table {
|
||
|
// Add vertical rhythm margins.
|
||
|
@include margin(1 0);
|
||
|
// Remove most spacing between table cells.
|
||
|
border-collapse: collapse;
|
||
|
border-spacing: 0;
|
||
|
// Prevent cramped-looking tables
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
td,
|
||
|
th {
|
||
|
// Remove most spacing between table cells.
|
||
|
padding: 0;
|
||
|
}
|