我想只使用CSS来设置JSP中的html下拉列表
<html:select name="complaintsForm" class="width_4" property="product">
<option value="">- Please Select -</option>
<html:options name="complaintsForm" property="productList" />
</html:select>
答案 0 :(得分:0)
试试这段代码。它对我来说很好。
<select name="complaintsForm" class="width_4" property="product">
<option value="">- Please Select -</option>
<html:options name="complaintsForm" property="productList" />
</select>
或者您可以使用styleClass属性而不是类。