firefox上,select控件如何大小不固定呢
firefox下,select控件怎么大小不固定呢?左右双向选择列表,在火狐浏览器中,有一个列表如果为空,高度就会下
firefox下,select控件怎么大小不固定呢?
左右双向选择列表,
在火狐浏览器中,有一个列表如果为空,高度就会下降一截。这样我点击addAll或者removeAll按钮后,两边的列表高度会不一样,请问是怎么回事啊。
IE和谷歌下都没问题。火狐版本15.0.1
代码:
[解决办法]firefox的问题吧。。定高和宽就好了
<td style="border:0px;width:40%;text-align:center">
<select id="selectL" name="from" mutiple="multiple" size="8" style="height:130px;width:90px;">
<option value="">user1</option>
<option value="">user2</option>
<option value="">user4</option>
<td align="center" style="border:0px;width:20%">
<input type="button" id="addAll" value=">>" style="width:50px;"/>
<input type="button" id="addOne" value=">" style="width:50px;"/>
<input type="button" id="removeOne" value="<" style="width:50px;"/>
<input type="button" id="removeAll" value="<<" style="width:50px;"/>
</td>
<td style="border:0px;width:40%;text-align:center">
<select id="selectR" name="to" multiple="multiple" size="8" style="height:130px;width:90px;">
</select>
</td>