跨浏览器删除表格单元格填充/间距
如何使用 CSS 删除表格结构中烦人的单元格间距和/或填充?如果该解决方案适用于 IE7-9、Firefox 和 Chrome,则加倍支持!
为什么 CSS 必须如此困难!真让人抓狂!
How does one remove that annoying cell spacing and/or padding in a table structure, using css? Double props if the solution works in IE7-9, Firefox, and Chrome!
Why must CSS be so difficult! It's maddening!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,可以在该表的 CSS 规则中使用
cellspacing:collapse;
来解决此问题。Normally, this is resolved using
cellspacing: collapse;
in your css rules for that table.table { border-spacing: 0 }
应该可以解决问题。table { border-spacing: 0 }
should do the trick.