如果元素不是表格,则添加填充
这是我的 CSS 剪切:
html, body, * {
padding:0;
margin:0;
}
我需要修改它,因此如果任何表格具有 cellpadding="4"
属性,那么它不会添加 padding:0;
并将使用此属性:cellpadding="4"
。
是否可以?
This is my CSS cut:
html, body, * {
padding:0;
margin:0;
}
I need to modify it, so if any table has a cellpadding="4"
attribute, then it won't add padding:0;
to that and will use this attribute instead : cellpadding="4"
.
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有现代浏览器都支持
:not
选择器。用法:小提琴:http://jsfiddle.net/rWVEu/
All modern browsers support the
:not
selector. Usage:Fiddle: http://jsfiddle.net/rWVEu/
我相信你必须使用 padding:inherit;另外,在 html,body,* 行之后声明它。
更新
如果您的单元格受到 * css 代码的影响,您可以包含专门针对 td 元素的行:
I believe you have to use padding:inherit; also, declare it after your html,body,* line.
UPDATE
If your cells are being affected by your * css code, you can include a line specifically for td elements: