Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> table { border: 1px solid blue; border-collapse: separate; border-spacing: 30px 10px; } td { border: 1px solid red; } </style> <table> <tr> <td>This table is styled using the CSS border-spacing property. Note that two values were provided - one for horizontal border-spacing and one for vertical border-spacing. </td> <td>Try changing the value to see the effect it has on the border.</td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </table>
Preview