Table Controls
You can use stylesheet attributes to control how tables appear:
- border-collapse can be separate or collapse. It defines whether adjacent borders are to be collapsed into one border or displayed separately.
- caption-side determines what side of the table any associated caption will be placed. Valid values are top (the default), bottom, left, and right
- empty-cells determines whether to show (the default) or hide cells without any content.
- table-layout can be auto (the default) or fixed to fix its position in the browser window.
Examples
.mytable {border-collapse:collapse;caption-side:bottom}



