如何更改 asp.net DropDownList 中文本框区域的背景颜色?
如何将 asp.net DropDownList 中文本框区域的背景颜色从白色更改为其他颜色? Backcolor 属性仅更改下拉部分。
How do I change the BackColor of the textbox area in an asp.net DropDownList from white to another color? The Backcolor property changes only the drop down section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下命令更改标签的背景颜色:
注意:IE 的样式与 Firefox 不同。
You can change the background color of a tag with the following:
Note: IE's styling differs from Firefox though.
您可以通过外部样式表并定位 DropDownList 的 ID 来完成此操作,也可以通过代码添加 CSS 属性,如下所示:
但正如 Nick 指出的那样,您可能无法获得所需的结果,因为表单元素继承自本机操作系统控件。
You can do this via an external stylesheet and target the DropDownList's ID, or you can add the CSS property via code, like so:
But as Nick pointed out, you may not get your desired result, because form elements inherit from native operating system controls.