我有关于的小设计问题

html.DropDownListFor()

如何更改html.DropDownListFor()的宽度?
例如css。

谢谢答案

最佳答案

您是否尝试过Html.DropDownListFor( new {width:"100"})
Html.DropDownListFor( new {@class:"longDropdownList"})
编辑

<style>
    .MakeWide { width: 200px; }
</style>

<%= Html.DropDownListFor(x => x.Name, new SelectList(new List<string>()), new { @class = "MakeWide" })%>

关于asp.net - 如何更改html.DropDownListFor()的宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3049498/

10-09 16:47