Hi,
A problem Ive been thinking about for a while.
I have an XML file that I apply a stylesheet to.
It simply displays the data in a 'table', <table><tr><td> etc
Output..........
------------------------------------------
| | VeryLongHeader1 | VeryLongHeader2 |
------------------------------------------
| 1. | 12 | 3434 |
------------------------------------------
| 2. | 1233 | 88 |
------------------------------------------
Desired output........Headers aligned vertically
-----------------
| | 1 | 2 |
| | r | r |
| | e | e |
| | d | d |
| | a | a |
| | e | e |
| | H | H |
-----------------
| 1. | 12 |3434|
-----------------
| 2. |1233| 88 |
-----------------
Is this possible in simple html?........or does anyone know a neat way of doing it.
Thanks
Evan
A problem Ive been thinking about for a while.
I have an XML file that I apply a stylesheet to.
It simply displays the data in a 'table', <table><tr><td> etc
Code:
<xsl:template name="parseStringTableData">
<xsl:param name="first"/>
<xsl:param name="rest"/>
<TD align="center"><font size="1"><xsl:value-of
select="$first"/></font></TD>
.........
Output..........
------------------------------------------
| | VeryLongHeader1 | VeryLongHeader2 |
------------------------------------------
| 1. | 12 | 3434 |
------------------------------------------
| 2. | 1233 | 88 |
------------------------------------------
Desired output........Headers aligned vertically
-----------------
| | 1 | 2 |
| | r | r |
| | e | e |
| | d | d |
| | a | a |
| | e | e |
| | H | H |
-----------------
| 1. | 12 |3434|
-----------------
| 2. |1233| 88 |
-----------------
Is this possible in simple html?........or does anyone know a neat way of doing it.
Thanks
Evan