哪些优先级或优先级规则(如果有)适用于A.xsl
, B.xsl
, 并C.xsl
根据它们的导入顺序?
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:my="http://me"
version="2.0">
<xsl:import href="A.xsl"/>
<xsl:import href="B.xsl"/>
<xsl:import href="C.xsl"/>
...