Hi,
I have a form with a select box set at size 4 with 4 options. But in Mozilla/FireFox, there is a redundant vertical scrollbar.
I was wondering if anyone knew how/if it could be removed? Maybe using a div to cover it? If so, how? Or CSS? Javascript?
Here is the html code:
<html>
<style type="text/css">
Option:hover {
background:#e5ecf9;
}
</style>
<table>
<tr><td>
<select style="border:solid 1px #7f9db9;overflow:scroll;" name="select" size="4"><option value="name1">Name1</option><option value="name2">name2</option><option value="name3">name3</option><option value="name4">name4</option></select>
</td></tr></table>
</html>
Thanks,
G


Reply With Quote
I see that you have "overflow:scroll;" which forces a scrollbar. Could try "overflow:auto;"
"
Kinda interesting. Usually the scrolling: no/yes/auto is used in frame sets. IE seems more tolerate. Would be interested in the solution myself.

Bookmarks