如何将css类放入html中:在jsp中选择元素

时间:2014-01-17 06:44:01

标签: java html css jsp struts

我想只使用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>

1 个答案:

答案 0 :(得分:0)

试试这段代码。它对我来说很好。

<select name="complaintsForm" class="width_4" property="product">
     <option value="">- Please Select -</option>
     <html:options name="complaintsForm" property="productList" />
</select>

或者您可以使用styleClass属性而不是类。