运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> table.ex1 { empty-cells: hide; } table.ex2 { empty-cells: show; } </style> </head> <body> <h1>The empty-cells Property</h1> <h2>empty-cells: hide:</h2> <table class="ex1" border="1"> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td></td> </tr> </table> <h2>empty-cells: show (default):</h2> <table class="ex2" border="1"> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td></td> </tr> </table> </body> </html>