Re: [CSS 2.1] 'margin-...' in properties index

Joris Huizer wrote:
> 
> This is probably off-topic but... does that mean there
> is no way of expressing the cellspacing/cellpadding
> attributes of <table> in css ?

Cellspacing maps to CSS 'border-spacing'.
   http://www.w3.org/TR/REC-CSS2/tables.html#propdef-border-spacing

Cellpadding maps to 'padding' on table cells:
   td, th {
           padding: 7px;
   }

~fantasai

Received on Saturday, 15 February 2003 11:09:17 UTC