Kinda new to the fancier tricks one can do with html, so here's my question.
I have a page which displays a seried of <select> combo boxes each having diffeent <options>
To keep the width uniform I'm using style="width:150px" in each <select>
ex.
<select name="bla_0" style="width:150px">
I would like to know if it's at all possible for the list when selecting to resize? If I have items that have names longer than what 150px permits, I'd like the user to be able to see the name completely when scrolling the list.
example
[tt]
select: |---------------|
option1 |My mother and your mother were yadda yadda|
option2 |The ferrari F-40 is worth around a million|
option3 |You get my point? |
[/tt]
currently it looks like
[tt]
select: |---------------|
option1 |My mother and y|
option2 |The ferrari F-4|
option3 |You get my poin|
[/tt]
Again, I don't want to have the selects with different widths. "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook
I have a page which displays a seried of <select> combo boxes each having diffeent <options>
To keep the width uniform I'm using style="width:150px" in each <select>
ex.
<select name="bla_0" style="width:150px">
I would like to know if it's at all possible for the list when selecting to resize? If I have items that have names longer than what 150px permits, I'd like the user to be able to see the name completely when scrolling the list.
example
[tt]
select: |---------------|
option1 |My mother and your mother were yadda yadda|
option2 |The ferrari F-40 is worth around a million|
option3 |You get my point? |
[/tt]
currently it looks like
[tt]
select: |---------------|
option1 |My mother and y|
option2 |The ferrari F-4|
option3 |You get my poin|
[/tt]
Again, I don't want to have the selects with different widths. "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook