Hi
the following will produce a list of tiddlers tagged with "mytag" in 3 columns when the CSS is applied from another tiddler tagged with $:/tags/Stylesheet.
@@.threecolumns
<div>
{{{ [tag[mytag]] }}}
</div>
@@
.threecolumns {
display:block;
column-count:3;
-moz-column-count:3;
-webkit-column-count:3;
color: red;
}
What do I need to introduce to alter the spacing between the columns?
Better still, is it possible to populate a table with a specified number of columns from the tiddlers tagged with mytag?
Thanks,
Jon.