[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

=?Utf-8?B?cm9kY2hhcg==?=

4/9/2004 6:04:00 PM

Is there any way to control the size of a drop down menu
box? I have six drop down menus in one area of my web
site and I would like them to be the same size. Having
them all in a row, they don't look good being different
sizes. Any help is appreciated. Thanks!
1 Answer

Jon Spivey

4/9/2004 6:52:00 PM

0

Hi Mary,
Like this
<style type="text/css">
select{
width:100px;
}
</style>
or if you've got the selects in a table you might prefer
<style type="text/css">
select{
width:100%;
}
</style>
Obviously changing 100 to whatever suits you.

Jon
Microsoft MVP - FP

Mary wrote:
> Is there any way to control the size of a drop down menu
> box? I have six drop down menus in one area of my web
> site and I would like them to be the same size. Having
> them all in a row, they don't look good being different
> sizes. Any help is appreciated. Thanks!