CSS Tables

border-collapse

    

/* collapse | separate */
border-collapse: collapse;


    

border-spacing

1 value specifies the horizontal and vertical spacing between cells.

2 values define the horizontal spacing first and then the vertical spacing.

    

border-collapse: separate; /* required */

border-spacing: 1px;

border-spacing: 1px 2px;


    

caption-side

    

/* top | bottom */
caption-side: top;


    

table-layout

    

/* auto | fixed */
table-layout: auto;