I have a listbox and I want to decrease its width.
Here is my code:
Try this code:
Kg Gm Pound Metric ton Litre Ounce
CSS:
#wgtmsr{ width:150px; }
If you want to change the width of the option you can do this in your css:
#wgtmsr option{ width:150px; }
Maybe you have a conflict in your css rules that override the width of your select
DEMO