仅在 asp.net 中禁用 CSS 进行特定控制

发布于 2024-11-01 03:17:02 字数 126 浏览 0 评论 0原文

我在我的 Web 表单中添加了用于复选框控件的自定义 CSS,该表单链接在母版页上,因此反映到所有子页面。

现在,在我的网格视图中,我有复选框,但我不想保留相同的复选框样式。如何禁用 gridview 内复选框的 CSS?

I have custom CSS for checkbox control into my web form, which is linked on the Master page hence reflect to all child page.

Now, In my gridview I have checkboxes and I don't want to keep the same checkbox sytle. How to disable CSS for checkboxes inside gridview?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

背叛残局 2024-11-08 03:17:02

更改 GridView 中复选框的 CSS 的最简单方法是:

  1. 将 CSS 类添加到 gridview(例如:gridView
  2. 在样式表文件中添加此 CSS:

.gridView input[ type=checkbox]{

边距:Xpx Xpx Xpx Xpx;

..
..您的样式属性...)

}

这将影响元素子元素复选框具有 CSS 类“gridView”。

The simpliest way to change the CSS the checkboxes in your GridView is to:

  1. Add a CSS-class to your gridview (example: gridView)
  2. Add this CSS in your stylesheet file:

.gridView input[type=checkbox]{

margin:Xpx Xpx Xpx Xpx;

..
..your style attributes...)

}

This will only affect the checkboxes that is children to an element that has CSS-class "gridView".

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