> Are there ways to "force" new page in printout?
> - even in a story column?

Using CSS in [[StyleSheet]], define these classes:

.breakbefore { page-break-before:always; }
.breakafter { page-break-before:always; }

Then, in any tiddler, you can enclose the desired table in a CSS class
wrapper, like this:

{{breakbefore{
| table | goes | here |
}}}
(forces page break before table)

OR

{{breakafter{
| table | goes | here |
}}}
(forces page break after table)

OR

{{breakbefore breakafter{
| table | goes | here |
}}}
(forces page break both before *and* after table)

enjoy,
-e


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to