I am working on an application where I am using a dropdown which is populated by large values. The values destroy the page structure. How can I adjust the dropdown length to correctly show the page? This is the code for the dropdown:
<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>
How can I adjust the dropdown length to fit the page?