如何设置 DropDownList 的字体大小?
Posted
技术标签:
【中文标题】如何设置 DropDownList 的字体大小?【英文标题】:How to set up font size for DropDownList? 【发布时间】:2018-01-09 20:44:00 【问题描述】:我在剃须刀代码中有下拉列表。
<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。
【问题讨论】:
我为你创建了这个link @BviLLe_Kid,请参阅我的编辑。我不确定为什么没有应用字体大小样式。 【参考方案1】:您可以像这样在 html 助手中使用新属性:
@Html.DropDownList("Country", new SelectList(Country).ToList(), new @style= "font-size: 24px;" )
【讨论】:
我只需要h3。 h3样式是10px吗? @Bigeyes h3 字体大小为 24 像素。见w3schools.com/w3css/w3css_fonts.asp 链接已损坏。而且我听说这取决于浏览器。 你看过***.com/questions/6140430/…吗? @Bigeyes 可以,但可以根据您的浏览器或网站进行自定义。以上是关于如何设置 DropDownList 的字体大小?的主要内容,如果未能解决你的问题,请参考以下文章