Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS border-collapse property</title> <style> table, td, th { border: 1px solid black; } .one { border-collapse: separate; } .two { border-collapse: collapse; } </style> </head> <body> <code><b>border-collapse: separate</b></code> <table class="one"> <tr> <th>Name</th> <th>Address</th> </tr> <tr> <td>Opal Kole</td> <td>63 street Ct.</td> </tr> <tr> <td>Max Miller</td> <td>41 NEW ROAD.</td> </tr> </table> <br /> <code><b>border-collapse: collapse</b></code> <table class="two"> <tr> <th>Name</th> <th>Address</th> </tr> <tr> <td>Opal Kole</td> <td>63 street Ct.</td> </tr> <tr> <td>Max Miller</td> <td>41 NEW ROAD.</td> </tr> </table> </body> </html>
  Preview Arrow