I'm trying to add a some generated content directly above a Docbook table
aligned to the left boundary of the table. This content should be allowed to
span across the whole table if necessary. The CSS rule below renders the
content in the correct location.
thead:before {
display: table-row;
text-align: left;
content: row(
cell(
content("generated content here - it can potentially be quite long"),
column-span, 2
)
);
}
This CSS rule does not, however, allow the generated content to span across
multiple cells. Is there any way to make the generated content span across the
whole table while remaining left aligned?
Cheers,
Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://www.xmlmind.com/pipermail/xmleditor-support/attachments/20070711/91fd2eda/attachment.htm