可以使用 XSL 执行以下操作吗?
我有一个包含以下内容的 XML:
<main
template.main.style="width: 1000px; height: 400px; margin: 0 auto;">
<child
template.item.style="duration: 7200; animation: all;"/>
</main>
template.main.style
例如的值template.item.style
可以在 div 中使用 xsl 进行格式化,使其看起来像这样吗?
<div id="main" style="width: 1000px; height: 400px; margin: 0 auto;">
<div class="layer" style="duration: 7200; animation: all;">
如果是这样的话,非常感谢所有帮助..