如何设置DropDownList的字体大小?

时间:2017-08-02 14:42:28

标签: asp.net asp.net-mvc razor font-size dropdown

我在剃刀代码中有下拉列表。

<div class="col-right">
                @{
                    List<string> Country = new List<string>();
                    Country.Add("Englind");
                    Country.Add("Spanish");
                }
                @Html.DropDownList("Country", new SelectList(Country).ToList())
            </div>

我想要的是在下拉列表中设置项目大小为h3。怎么样?

修改

我按照答案将大小设置为24,但它选择了大小为13。

Style

1 个答案:

答案 0 :(得分:3)

您可以在html帮助器中使用新属性,如下所示:

@Html.DropDownList("Country", new SelectList(Country).ToList(), new { @style= "font-size: 24px;" })