Subject: RE: attribute order
From: Andy Joslin <andy.joslin@xxxxxxxx>
Date: Thu, 21 Feb 2002 16:45:32 -0000
|
In my experience you can control the order using xsl-attribute-sets
e.g.
<xsl:attribute-set name="table580">
<xsl:attribute name="border">0</xsl:attribute>
<xsl:attribute name="cellpadding">0</xsl:attribute>
<xsl:attribute name="cellspacing">0</xsl:attribute>
<xsl:attribute name="width">580</xsl:attribute>
</xsl:attribute-set>
results in..
<table border="0" cellpadding="0" cellspacing="0" width="580">
though I agree that the order isn't really that significant
cheers
Andy
-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: 21 February 2002 16:18
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: attribute order
> After an XSL transformation, the attributes in the HTML tags are
reordered.
> Any idea why this is happening and what can be done about it?
In both XML and HTML the ordering of attributes is insignificant.
You can not control this from XSLT, any more than you can control whether
" or ' is used around the value.
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|