有没有人有更好的样式 DropDownList 或为 asp:DropDownList 准备好的 css 文件?我在 www 上找不到完成的东西?!
<asp:DropDownList ID="DropDownList1" runat="server" Width="50px">
</asp:DropDownList>
我可以想象像jQuery UI 样式这样的东西。
感谢您的建设性回答!
我在我的项目中使用了这个,看起来不错。
试试这个: 链接
.dropdown1 {
background: url(http://maxgxl.com/max4u/images/selectArrowDown.png) no-repeat 95% center;
width:150px;
border: 1px solid #000;
overflow: hidden;
border-radius:5px;
}
.dropdown1 select {
border:0px;
width:168px;
background:none;
}
您在此处共享的链接似乎是一个组合框。如果您想设计您的下拉列表控件,那么您也可以拥有自己的样式。
想想您在此处给出的相同链接。它包含一个文本框,其背景图像是一个看起来像下拉列表的小三角形,以及一个简单的 div/list 控件(ul-li),其中包含填充在下拉列表下方的所有项目。
现在你需要决定你的设计需要什么。根据您的要求,您可以在此处自定义下拉列表。
看到这只是您可以创建自己风格的自定义下拉列表的一种方式。如果您选择 jquery 下拉列表,那么您可以拥有与您自己设计的外观和感觉相同的外观。所以你决定你想用你的下拉列表拥有的东西。
谢谢
.search_categories .select{
background: transparent;
line-height: 1;
border: 0;
padding: 0;
border-radius: 0;
width: 120%;
position: relative;
z-index: 10;
font-size: 1em;
}