主题:关于for-each的问题
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:user="urn:http://www.hexun.com/namespace">
<xsl:template match="/NewDataSet">
<xsl:for-each select="Table">
<div class="div_4">
<div class="div_4_flot_2">
·
<a target="blank">
<xsl:attribute name="href"><xsl:value-of select="linkurl"/></xsl:attribute><xsl:value-of select="infotitle" disable-output-escaping="yes"/>
</a>
</div>
</div>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
-----------------------------------------------------------------------〉
我想让那个点和文字显示在一行里,然后换行继续显示,但现在的问题是外层的div不能换行,所有的div都挤在一行里,该怎么办呀
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:user="urn:http://www.hexun.com/namespace">
<xsl:template match="/NewDataSet">
<xsl:for-each select="Table">
<div class="div_4">
<div class="div_4_flot_2">
·
<a target="blank">
<xsl:attribute name="href"><xsl:value-of select="linkurl"/></xsl:attribute><xsl:value-of select="infotitle" disable-output-escaping="yes"/>
</a>
</div>
</div>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
-----------------------------------------------------------------------〉
我想让那个点和文字显示在一行里,然后换行继续显示,但现在的问题是外层的div不能换行,所有的div都挤在一行里,该怎么办呀