From 6398b0776720659b579c31fcb489c0b31394b9d4 Mon Sep 17 00:00:00 2001 Message-Id: <6398b0776720659b579c31fcb489c0b31394b9d4.1715380026.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 23 Jan 2007 22:51:34 +0000 Subject: [PATCH] vertical-align:: wants 'middle', not 'center' See: http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-vertical-align Organization: Straylight/Edgeware From: rjk@greenend.org.uk <> --- templates/disorder.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/disorder.css b/templates/disorder.css index d38311c..cb25a7e 100644 --- a/templates/disorder.css +++ b/templates/disorder.css @@ -45,7 +45,7 @@ th { /* ordinary cells in tables */ td { - vertical-align: center + vertical-align: middle } /* the headings of the table */ -- [mdw]