> > {{cola{text in this line will be displayed in the left column}}}{{colb
> > {but text in this line will be displayed in the right column}}}{{clear
> > {}}}
> However, something a little weird. Tiddlers with coding for columns
> close at minimum size so that if there are more than three lines of text
> in either column, the text extends beyond the bottom border of the tiddler.
In general, after *floating* some content, you want to have a DIV
element with a CSS attribute of "clear:both". This forces the content
that follows to start below the floated elements. In this case, it
makes sure that the tiddler will fully enclose the content instead of
letting it 'leak out'...
Take note that a DIV element (not a SPAN element) is required for the
'clear:both' CSS attribute to be applied. In the sample code, I
noticed the following:
{{clear{}}}
which is *almost* correct, but creates a SPAN rather than a DIV. It
needs a newline in it, like this:
{{clear{
}}}
to ensure that a DIV element is created.
If this is the case, then I suspect that you are perhaps only one more
byte away from a solution....
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
-~----------~----~----~----~------~----~------~--~---