Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS empty-cells property</title> <style> table, td, th { margin-top: 15px; border: 1px solid black; } .one { empty-cells: show; } .two { empty-cells: hide; } </style> </head> <body> <code><b>Below example for empty-cells</b></code> <table class="one"> <tr> <th>Name</th> <th>Address</th> </tr> <tr> <td>Opal Kole</td> <td></td> </tr> <tr> <td></td> <td>41 NEW ROAD.</td> </tr> </table> <br /> <hr /> <code><b>Below example for hidden empty-cells</b></code> <table class="two"> <tr> <th>Name</th> <th>Address</th> </tr> <tr> <td>Opal Kole</td> <td></td> </tr> <tr> <td></td> <td>41 NEW ROAD.</td> </tr> </table> </body> </html>
  Preview Arrow