From 9a0c4c4571a9055eab5a14fcee755c5dde12f643 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 27 Sep 2014 09:20:03 +0000 Subject: HTML5-isation: remove more alignments. --- html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index 6220e223..86ec9452 100644 --- a/html.c +++ b/html.c @@ -87,7 +87,6 @@ static const char *const htmlattrs[ATTR_MAX] = { "style", /* ATTR_STYLE */ "width", /* ATTR_WIDTH */ "id", /* ATTR_ID */ - "align", /* ATTR_ALIGN */ "colspan", /* ATTR_COLSPAN */ "charset", /* ATTR_CHARSET */ }; @@ -202,7 +201,8 @@ print_gen_head(struct html *h) */ t = print_otag(h, TAG_STYLE, 0, NULL); print_text(h, "table.head, table.foot { width: 100%; }\n" - "td.head-rtitle, td.foot-os { text-align: right; }\n"); + "td.head-rtitle, td.foot-os { text-align: right; }\n" + "td.head-vol { text-align: center; }\n"); print_tagq(h, t); if (h->style) { -- cgit