减少/增加下拉列表的宽度(选项标签)

时间:2014-01-23 08:27:15

标签: html css forms

如何更改下拉菜单的宽度。我可以更改选择标记的宽度,但不能更改选项标记的宽度。

我尝试了这个但没有用

.box-wrapper select option{
    width:100px;
}

谢谢

1 个答案:

答案 0 :(得分:1)

如果将以下css添加到您的代码

,这样可以正常工作
select{
   width:100px;
}

option{
    width:200px;
}