Koristim ovaj CSS za kreiranje ovalne dropdown liste ali ne radi.
<style type="text/css">
.select {
-webkit-border-radius:24px;
-moz-border-radius:24px;
border-radius:24px;
}
</style>
<body>
<form id="form1" runat="server">
<div>
<asp:DropDownList
ID="DropDownList1"
runat="server"
AutoPostBack="true"
Width="350"
Font-Size="X-Large"
CssClass="select"
</asp:DropDownList>
</div>
</form>
</body>
Može pomoć?