Eric meyer reset css 建议“表格在标记中仍需要 'cellspacing="0"'”。有必要吗?有什么好处border-collapse: collapse
;和border-spacing: 0;
?
它只是建议使用单元格间距,而表格还有另一个称为单元格填充的属性?
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: collapse;
border-spacing: 0;
}