现在我有以下内容,但它没有向右移动图像。我想有头部和一个小图像内的面,其中的图像是在最右边。唯一不适合我的部分是正确的对齐。有什么建议吗?
<f:facet name="header">
<h:panelGroup id="headerwrapper" >
<h:outputText id="header"
styleClass="outputText"
value="TableTitle"
style="font-weight:bold;"/>
<h:graphicImage id="img1"
value=img.gif"
height="13"
width="13"
style="horizontal-align:right;"/>
</h:panelGroup>
</f:facet>
可以使用css float:right;
<h:graphicImage id="img1"
library="images/icons"
name="ic_new.png"
style="float:right;"/>