Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在页面生成和 XSLT 之后,XSL 有没有办法将以下元素对齐到页面的右侧?
<RadioButton> <Name>myRadio</Name> </RadioButton>
模板在哪里RadioButton定义为<input radio...etc>
RadioButton
<input radio...etc>
生成页面后,您将需要使用级联样式表或其他方式进行修饰对齐。
所以在你的 xsl 中你可能有模板让它像
<input type="radio" name="blah" class="moo" value="blah" />
并且在 .css 中有
.moo{ float:right; }
或者您可以使用内联样式,例如
<input type="radio" name="blah" style="float:left;" value="blah" />