我正在使用JSF2.0开发一个页面&素面我有一个要求,我需要将两个输出标签放在一个单独的空格中。
喜欢这个
地址1:^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^地址2:
我在下面写了代码 <h:panelGrid columns="2" styleClass="companyHeaderGrid" >
<p:outputLabel value="Address 1 : " />
<h:outputText value="38th Street Pharmacy" />
<!-- Here i need Address 2 at the right side of the page same line to the address 1-->
<p:outputLabel value="State : " />
<h:outputText value="Texas" />
<p:outputLabel value="Zip Code : " />
<h:outputText value="123456" />
<p:outputLabel value="Phone : " />
<h:outputText value="9700300009" />
<p:outputLabel value="Fax: " />
<h:outputText value="" />
<p:outputLabel value="Contact Person : " />
<h:outputText value="Clinton Albrecht" />
</h:panelGrid>
我尝试了很多方法,例如地址1和aaddress 2 palces在4列的pannel网格中,我试图使用&#34; spacer&#34;标签,但它以不同的方式给出了外观..
请帮帮我
在Nani之前表示感谢