Hello, I have following XML fragment:
<table>
<row>...</row>
<row>...</row>
...
</table>
and I would like to display it (speaking about CSS for visual editing)
as a table with table header, preceded by section title. The HTML
formatting equivalent would be this:
<h2>SECTION TITLE</h2>
<table>
<thead>TABLE HEADER</thead>
<tbody>...</tbody>
</table>
I know how to generate either table header or section title from CSS.
But is it possible to generate both at once?
Thank you
Tomas Klinkovsky

