0
我使用primefaces如何正確對齊兩個primefaces-elements?
<p:toolbar style="margin:20px 0px">
<f:facet name="left">
<p:outputLabel value="#{loginBean.fullname}" />
</f:facet>
<f:facet name="right">
<p:inputText style="margin-right:10px" placeholder="Search" disabled="true"/>
<p:themeSwitcher effectSpeed="normal" effect="fade" style="width:165px; margin-right:10px;" id="defaultSwitcher" value="#{themeSwitcherBean.theme}">
<f:selectItem itemLabel="Choose Theme" itemValue="" />
<f:selectItems value="#{themeSwitcherBean.themes}" />
<p:ajax global="false" listener="#{themeSwitcherBean.saveTheme}" />
</p:themeSwitcher>
<p:commandButton action="#{loginBean.logout}" title="Log Out" style="width:36px; height:20px" icon="ui-icon-power" value="" ajax="false"></p:commandButton>
</f:facet>
</p:toolbar>
菜單欄這使得右側
它打擾我的眼睛是來回MTHE搜索框,下拉框對齊是不在同一高度。
你知道我可以如何正確對齊它們嗎?
有沒有人知道更好的解決方案? – kalym4ik
我嘗試了兩個。見http://imgur.com/a/iSOYG。兩者都不起作用。 –