I would like to know how to remove the scroll bar from the select dropdown list? I have also tried overflow: hidden; but it doesn't work in Firefox.
CSS:
.search_pulldown_txtbox1
{
height:120px;
overflow:hidden;
width: 160px;
margin-top:8px;
background-image:none;
margin-left:10px;
line-height: 14px;
}
HTML:
<select name="keyword_select" multiple="multiple" class="search_pulldown_txtbox">
<option> 1</option>
<option> 2</option>
<option> 3</option>
</select>