Monday, July 9, 2012

HTML5 equivalent of cellpadding, cellspacing, valign, and align?

/*cellpadding*/
thtd { padding0; }
 
/* cellspacing */
table { border-collapse:separateborder-spacing0; }
 
/* valign */
thtd { vertical-aligntop|middle|bottom; }
 
/* align (center)
   width of table must be less than the parent container */
table { margin0 auto; }