当文本太大时,如何减小td的宽度

时间:2016-03-30 14:30:59

标签: html css jsf

我正在使用一个应用程序,我使用的是一个由大值填充的下拉列表。这些值会破坏页面结构。如何调整下拉长度以正确显示页面?这是下拉列表的代码:

 <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>

如何调整下拉长度以适合页面?

1 个答案:

答案 0 :(得分:-2)

你尝试过max-width还是max-height?