如何:重载/覆盖 asp:label 标记的默认 CSS 并使其在 Visual Studio 2005 中通用?
我正在尝试为我公司正在开发的大型应用程序制作一个通用的 CSS 布局。我在尝试将所有 asp:label 的样式设置为某种方式时遇到了问题。我对按钮也有同样的问题,但我发现:
input[type="submit"] {
background: red;
}
这将使所有按钮都有红色背景......
那么,有人知道如何设计 asp:label 的样式吗???下面列出了我尝试过的一切,但没有效果:
label {
background: red;
}
asp:label {
background: red;
}
input[type="label"] {
background: red;
}
I'm trying to make a universal CSS layout for a large application my companies working on. I ran into a problem while trying to style all asp:label's to look a certain way. I was having the same problem with buttons but I figured that out:
input[type="submit"] {
background: red;
}
that will make all the buttons have a red background....
So, does anyone know how to style asp:label's ??? Everything that I've attempted is listed below, but to no avail:
label {
background: red;
}
asp:label {
background: red;
}
input[type="label"] {
background: red;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于标签只输出一个跨度,我想它是这样的:
Since a label just outputs a span, I would imagine that it's like this: