[Home] [By Thread] [By Date] [Recent Entries]
At 2004-04-06 06:51 -0700, puja thakral wrote:
Actually XSL doesn't recognise  . It will if you add it to your stylesheet ... it just isn't built-in. <xsl:text> </xsl:text> works and creates only one white space and not more then that.I want to have sufficient white space between my two images as they're very close to each other.Any suggestions? An XSLT stylesheet is just an XML document, so just add it to your XML document: <!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " "> <!--known for HTML output, not in XML-->
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">..... ..... </xsl:stylesheet> Since the XSLT processor uses for this character when emitting HTML output, you will get what you want. I hope this helps. ...................... Ken -- Public courses: Spring 2004 world tour of hands-on XSL instruction Each week: Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO Hong Kong May 17-21; Bremen Germany May 24-28; Helsinki June 14-18 World-wide on-site corporate, govt. & user group XML/XSL training. G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995) Male Breast Cancer Awareness http://www.CraneSoftwrights.com/s/bc
|

Cart



