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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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;