From 5125b91b3fd4263c9bd15307114175cd3dae5374 Mon Sep 17 00:00:00 2001 From: CodaCoder Date: Thu, 7 Jan 2021 12:22:05 -0600 Subject: [PATCH] Update Formatting List Results as Tables with CSS - Specified Columns Methods.tid (#5375) -moz-column* seems to have been dropped in Firefox. Added the non-prefixed, standard properties. --- ...Results as Tables with CSS - Specified Columns Methods.tid | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editions/tw5.com/tiddlers/howtos/Formatting List Results as Tables with CSS - Specified Columns Methods.tid b/editions/tw5.com/tiddlers/howtos/Formatting List Results as Tables with CSS - Specified Columns Methods.tid index bae7414ca..817776a1a 100644 --- a/editions/tw5.com/tiddlers/howtos/Formatting List Results as Tables with CSS - Specified Columns Methods.tid +++ b/editions/tw5.com/tiddlers/howtos/Formatting List Results as Tables with CSS - Specified Columns Methods.tid @@ -18,6 +18,8 @@ For other table-making techniques see also: /* FOUR COLUMN MODE */ .fourcolumns { display:block; + column-count:4; + column-gap:1em; -moz-column-count:4; -moz-column-gap:1em; -webkit-column-count: 4; @@ -42,6 +44,8 @@ Note the various places you need to indicate the number of columns