Set width of dropdown element in HTML select dropdown options

后端 未结 7 1109
醉话见心
醉话见心 2020-11-27 21:36

I am working on a website that involves automatically populating a select box using a PHP script. This all works fine except the problem is that what I am using to populate

相关标签:
7条回答
  • 2020-11-27 22:16

    u can simply use "width" attribute of "style" to change the length of the dropdown box

    <select class="my_dropdown" id="my_dropdown" style="width:APPROPRIATE WIDTH IN PIXLES">
    <option value="1">LONG OPTION</option>
    <option value="2">short</option>
    </select>
    

    e.g.

    style="width:200px"
    
    0 讨论(0)
提交回复
热议问题