0

在页面生成和 XSLT 之后,XSL 有没有办法将以下元素对齐到页面的右侧?

<RadioButton>               
    <Name>myRadio</Name>
</RadioButton>

模板在哪里RadioButton定义为<input radio...etc>

4

1 回答 1

1

生成页面后,您将需要使用级联样式表或其他方式进行修饰对齐。

所以在你的 xsl 中你可能有模板让它像

<input type="radio" name="blah" class="moo" value="blah" /> 

并且在 .css 中有

.moo{
float:right;
}

或者您可以使用内联样式,例如

<input type="radio" name="blah" style="float:left;" value="blah" /> 
于 2012-08-29T15:13:12.043 回答