From 37d1c1ef8ba2ddd5708bfc93083cda964711e6aa Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Wed, 15 Jan 2014 16:16:32 -0800 Subject: [PATCH] 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. --- normalize.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/normalize.css b/normalize.css index cf18460..d38d791 100644 --- a/normalize.css +++ b/normalize.css @@ -408,3 +408,8 @@ table { border-collapse: collapse; border-spacing: 0; } + +td, +th { + padding: 0; +}