我一直在寻找如何更改所选项目的width
@Html.DropDownList
而没有任何成功。出于设计目的,我想将其设置为450px
,但它似乎并不高于300
。这会是一个限制吗?
@Html.DropDownList("AddressID", null, htmlAttributes: new { style = "width:450px" })
似乎new { style="width:450px" }
只更改选项的宽度;不是选定的区域。在研究过程中,我发现如何使用height
中的size
来更改所选项目的new { size="20" }
。所以我尝试使用new { width = "450" }
但没有成功。 Length
也不起作用。 :(
我希望得到任何帮助。谢谢!
答案 0 :(得分:2)
如果您使用的是Bootstrap,则会max-width
标记应用Select
规则。
试试这对我有用:
@Html.DropDownList("AddressID", null, htmlAttributes: new { @class="form-control", style = "width:450px;max-width:450px;" })