我正在使用一个应用程序,我使用的是一个由大值填充的下拉列表。这些值会破坏页面结构。如何调整下拉长度以正确显示页面?这是下拉列表的代码:
<td>
<h:selectOneMenu id="basicSalary" value="#{searchMemberBean.memberBO.grossSalaryRange}">
<f:selectItem itemLabel="SELECT" itemValue=" " id = "selectItem11"/>
<f:selectItem itemLabel="Salary less than 4,000 AED per month" itemValue="1" id = "selectItem12"/>
<f:selectItem itemLabel="Salary between 4,001 and 12,000 AED per month" itemValue="2" id = "selectItem33"/>
<f:selectItem itemLabel="Salary greater than 12,000 AED per month" itemValue="3" id = "selectItem34"/>
<f:selectItem itemLabel="No salary-for dependents or children that do not acquire a salary" itemValue="4" id = "selectItem35"/>
</h:selectOneMenu>
</td>
如何调整下拉长度以适合页面?
答案 0 :(得分:-2)
你尝试过max-width还是max-height?