CSS 参考手册
CSS empty-cells 属性
隐藏表中的空单元格的边框和背景
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> table { border-collapse: separate; empty-cells: hide; } </style> </head> <body> <table border="1"> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td></td> </tr> </table> <p><b>注意:</b> 当 !DOCTYPE 已经声明 Internet Explorer 8 支持 empty-cells属性.</p> </body> </html>
运行结果:
点击运行 »