Hi,
This is probably a very basic formatting question but I've been stuck for some time...
I am attempting to display two tables on one page. One table giving an overall pass/fail report for a number of tests and the other for drtailing exactly which passed etc.
I am having no difficulty with getting the tables to display etc. (which I thought I might), its just when I render the page the second table appears at the very bottom with a large gap between the two. I would like them to be closer together, ideally with one line in between just for clarity.
My code is in the following structure:
These have their own templates, master and tests which seem to be doing everything I expect as well.
Any suggestions
This is probably a very basic formatting question but I've been stuck for some time...
I am attempting to display two tables on one page. One table giving an overall pass/fail report for a number of tests and the other for drtailing exactly which passed etc.
I am having no difficulty with getting the tables to display etc. (which I thought I might), its just when I render the page the second table appears at the very bottom with a large gap between the two. I would like them to be closer together, ideally with one line in between just for clarity.
My code is in the following structure:
Code:
<tr style="height: 100%; vertical-align: top">
<td colspan="2">
<table class="TABLE1">
<tr class="HEAD">
<td class="HEAD">Test</td>
<td class="HEAD" style="width: 80px">Status</td>
</tr>
<xsl:apply-templates select="//master" />
</table>
</td>
</tr>
<tr style="height: 100%; vertical-align: middle">
<td colspan="2">
<table class="TABLE2">
<tr class="HEAD">
<td class="HEAD">Test</td>
<td class="HEAD" style="width: 80px">Status</td>
</tr>
<xsl:apply-templates select="//tests" />
</table>
</td>
</tr>
These have their own templates, master and tests which seem to be doing everything I expect as well.
Any suggestions