How can I style a mvc3/asp.net DropDownList in css like I can with a text box:
–Site.css – Style for text box–
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 Display:

alternatively, you can add a style to the dropdownlist:
so you could do the following in the css: