我不知道为什么这会困扰我这么多,但是当我创建网站时,我总是尝试使用CSS进行所有样式设计。但是,当我使用表时,我总是要记住做的一件事是添加cellpacing =“0”和cellpadding =“0”
为什么没有CSS属性来覆盖这些过时的HTML 4属性?
最佳答案
table { border-collapse: collapse; }
至于cellpadding,你可以做
table tr td, table tr th { padding: 0; }
关于html - 为什么cellpacing和cellpadding不是CSS样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/339146/