@Html.DropDownList
生成的html
<select>
<option value="1"></option>
</select>
只知道可以设置select的style样式
如何设置option的style样式?
直接写style里边,option,或者<option value="1' type="" ></option>
直接在css中设置,如果效果出不来,说明有层级覆盖,可以在写的css后面加上 !importent
@Html.DropDownList("KeywordsType", null, new { @class = "select" })
style
{
.select{}
}
option style 可以设置字体,大小,一些特殊的不知道咋设置