Producing web pages
* HTML CSS DHTML XHTML A to Z of tags        Accessibility          Design

border-spacing

The border-spacing property allows you to specify the distance between borders of adjacent cells in a table. For example:

table { border-spacing: 5px;}

If you set the border-spacing property to 5px, this is like adding cellspacing="5" to the <table> tag in standard HTML. If you want to use border-spacing, you need to set the border-collapse property to separate.

This doesn't work in Internet Explorer yet.