gpt4 book ai didi

html - 如何设置 MVC3/ASP.net DropDownList 的样式?

转载 作者:搜寻专家 更新时间:2023-10-31 22:22:53 25 4
gpt4 key购买 nike

如何在 css 中设置 mvc3/asp.net DropDownList 的样式,就像使用文本框一样:

--Site.css - 文本框样式--

input[type="text"], 
input[type="password"] {
border: 1px solid #93A9C8;
padding: 2px;
font-size: 1em;
color: #444;
width: 200px;
border-radius: 3px 3px 3px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-o-border-radius: 3px 3px 3px 3px;

MVC3 显示:

enter image description here

最佳答案

input[type="text"], 
input[type="password"],
select {
border: 1px solid #93A9C8;
padding: 2px;
font-size: 1em;
color: #444;
width: 200px;
border-radius: 3px 3px 3px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-o-border-radius: 3px 3px 3px 3px;

或者,您可以向下拉列表添加样式:

@Html.DropDownListFor(m => m.ID, Model.MyList, new { @class="selectStyle" })

因此您可以在 css 中执行以下操作:

.selectStyle { /* whatever */ }

关于html - 如何设置 MVC3/ASP.net DropDownList 的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7590916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com