Prev Demo
Border Collapse
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; } table, td, th { border: 1px solid black; } </style> </head> <body> <h2>Border collapse</h2> <table> <tr> <th>AMERICA</th> <th>INDIA</th> </tr> <tr> <td>OBAMA</td> <td style="color:blue">DR.APJ ABDUL KALAM</td> </tr> <tr> <td>PRESIDENT</td> <td>FORMER PRESIDENT</td> </tr> </table> </html>
Note: We DO NOT save your trial code in our database.
Output