仅在 asp.net 中禁用 CSS 进行特定控制
我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改 GridView 中复选框的 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:
.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".