-
Notifications
You must be signed in to change notification settings - Fork 107
Content Format
Filipe Fortes edited this page Feb 7, 2011
·
6 revisions
You can modify layout behavior by using one or more of the following CSS classes:
-
columnbreak
: Force a column break before this element -
keeptogether
: Do not let this element be split up across columns (when possible) -
keepwithnext
: Keep this element in the same column as the next element (when possible)
In the markup example below, Treesaver will always try to keep the <h3>
in the same column as the following paragraph.
<h3 class="keepwithnext">My Favorite Ice Cream</h3>
<p>Has always been vanilla. In fact, it all began this one time...</p>