I think there's a css problem with nested definition lists

;1 dt
:;1.1 dt
::1.1 dd
:;1.2 dt
::;1.2.1 dt
:::1.2.1 dd
;2 dt
:;2.1 dt
::2.1 dd

Rendering inside tiddlers is a bit weird : every child definition
terms and descriptions (dt and dd) are rendered like a definition term
(bold) and every children list are rendered at the same level as the
previous element.

As far as I can tell the problem is in the css (or the way the list is
built html wise). As every new list is contained inside the parent dt
everything will inherit its css properties.

The only workaround I've found so far would be to always add an empty
dd before creating a new child definition list (see below).

;1 dt
:
:;1.1 dt
::1.1 dd
:;1.2 dt
::
::;1.2.1 dt
:::1.2.1 dd
;2 dt
:
:;2.1 dt
::2.1 dd

I know it's a very specific use but it could maybe use some code
tweaks somewhere

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" 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/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to