Remove default table cell padding

Normalize.css makes some convenience changes to the default table
rendering. This change removes the 1px of padding around table cells.
This commit is contained in:
Nicolas Gallagher 2014-01-15 16:16:32 -08:00
parent 496702aab6
commit 37d1c1ef8b

5
normalize.css vendored
View File

@ -408,3 +408,8 @@ table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}