Search code examples
htmlxhtml

How do I adjust the width of a DropDown <select> box?


I need to adjust the width of a select HTML box without using css, is there a way? I tried size but then it's adjusting the height, and width does nothing? Is there another way?


Solution

  • <style type="text/css">     
        select {
            width:200px;
        }
    </style>
    

    Does that not work?