1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-01 18:38:02 +00:00

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.
This commit is contained in:
CodaCoder
2021-01-07 12:22:05 -06:00
committed by GitHub
parent eadbd62e6d
commit 5125b91b3f

View File

@@ -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
<style>
.fourcolumns {
display:block;
column-count:4;
column-gap:1em;
-moz-column-count:4;
-moz-column-gap:1em;
-webkit-column-count: 4;