Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table { border-collapse: separate; border-spacing: 10px; background-color: #1c87c9; } table, th, td { border: 2px solid #aaa; text-align: center; } th { color: #fff; background-color: #095484; padding: 10px; } td { background-color: #eee; padding: 20px; } </style> </head> <body> <h2>Cellpadding and Cellspacing Example</h2> <table> <thead> <tr> <th>Heading</th> <th>Heading</th> <th>Heading</th> <th>Heading</th> </tr> </thead> <tbody> <tr> <td>Some text</td> <td>Some text</td> <td>Some text</td> <td>Some text</td> </tr> <tr> <td>Some text</td> <td>Some text</td> <td>Some text</td> <td>Some text</td> </tr> </tbody> </table> </body> </html>