如何:重载/覆盖 asp:label 标记的默认 CSS 并使其在 Visual Studio 2005 中通用?

发布于 2024-11-28 21:18:26 字数 394 浏览 1 评论 0原文

我正在尝试为我公司正在开发的大型应用程序制作一个通用的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃气十足 2024-12-05 21:18:26

由于标签只输出一个跨度,我想它是这样的:

span { background-color:Red; }

Since a label just outputs a span, I would imagine that it's like this:

span { background-color:Red; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文