M
master44
I have a multiple select box that must fit in a tight space, there
will be several hundred entries in the multiple select and some text
is wider than the space and I will need to scroll horizontally.
I found a solution using a div to give me a horizontal scoll, however
I then have to scroll far to the right to use the vertical scroll.
<div style="overflow-x:scroll; width:120px;overflow: -moz-scrollbars-
horizontal;">
<select multiple="true" name="selectbox" id="selectbox" size="2" >
<option value="one">One</option>
<option value="two">Two</option>
<option value="three">Three</option>
<option value="four">Four</option>
<option value="five">Five</option>
<option value="six">Six</option>
<option value="seven">Seven</option>
<option value="eight">ABCDEFGHIJKLMNOPQRSTUVWXYZ</option>
</select>
</div>
So I want the horizontal scoll and vertical scroll available at the
same time without having to scroll right to find the vertical scroll.
How can this be done with the example above?
Thanks!
will be several hundred entries in the multiple select and some text
is wider than the space and I will need to scroll horizontally.
I found a solution using a div to give me a horizontal scoll, however
I then have to scroll far to the right to use the vertical scroll.
<div style="overflow-x:scroll; width:120px;overflow: -moz-scrollbars-
horizontal;">
<select multiple="true" name="selectbox" id="selectbox" size="2" >
<option value="one">One</option>
<option value="two">Two</option>
<option value="three">Three</option>
<option value="four">Four</option>
<option value="five">Five</option>
<option value="six">Six</option>
<option value="seven">Seven</option>
<option value="eight">ABCDEFGHIJKLMNOPQRSTUVWXYZ</option>
</select>
</div>
So I want the horizontal scoll and vertical scroll available at the
same time without having to scroll right to find the vertical scroll.
How can this be done with the example above?
Thanks!